Stefan Helfrich
Stefan Helfrich
Add functionality to the Java-based splash screen to paint multiple small splash icons on the main logo:  Icons ideally are PNGs with transparent background and need to be located...
At least on Windows 10 (haven't tested other versions) the following call will not return even if the Jython script exits: ``` $ .\ImageJ-win64.exe --ij2 --headless --console --run someScript.py ```...
The new Java splash (#53) currently looks in `Fiji.app/images/logo.png` for the logo to show in the splash screen. This should be improved in a future version s.t. the splash is...
The new Java splash screen (#53) supports a progress bar that is currently static.
Adds implementations for (peak) signal-to-noise ratio, root mean square error, and mean absolute error of two images (a reference and a test image). Closes #521.
There is a version in [`RealAdaptiveMedianFunction`](https://github.com/imagej/imagej-deprecated/blob/master/src/main/java/net/imglib2/ops/function/real/RealAdaptiveMedianFunction.java) which currently lives in `imagej-deprecated` that should be used as a basis for the "new" op. There's also a `Command` that could be refactored...
From https://github.com/imagej/imagej-ops/pull/435: > after a discussion with @stelfrich in person we decided to close this PR as the suggested code can be generalized and combined with the current threshold architecture....
``` match(RAI, RAI, method, maxNumberOfMatches) -> List match(RAI, RAI, method) -> Localizable match(RAI, RAI) -> Localizable (using cross-correlation) ``` See also: - http://docs.opencv.org/2.4/doc/tutorials/imgproc/histograms/template_matching/template_matching.html - [`CorrelateFFTC.java`](https://github.com/imagej/imagej-ops/blob/11c59bd33254d70f359ea5210ad71d6a64c1693a/src/main/java/net/imagej/ops/filter/correlate/CorrelateFFTC.java)
[`imagej-deprecated`](https://github.com/imagej/imagej-deprecated) contains some useful [operations](https://github.com/imagej/imagej-deprecated/tree/master/src/main/java/net/imglib2/ops/operation/labeling/binary) on `ImgLabeling`s that could be added to Ops: - AND - CONGRUENT - DIFFERENCE - INTERSECT - MERGE (see #539) - XOR
There was an implementation in imglib that was never ported to imglib2. See: - [HoughTransform](https://github.com/fiji/legacy-imglib1/blob/master/src/main/java/mpicbg/imglib/algorithm/transformation/HoughTransform.java) - [HoughLineTransform](https://github.com/fiji/legacy-imglib1/blob/master/src/main/java/mpicbg/imglib/algorithm/transformation/HoughLineTransform.java)