Stefan Helfrich
Stefan Helfrich
Add ops for computing the signal-to-noise ratio (SNR) between a reference and noisy image: ```java float snr = ops().image().snr(reference, noisy); ``` There is an [implementation from the BIG at EPFL](http://bigwww.epfl.ch/sage/soft/snr/)...
Create a dedicated `BurnIn` op that burns in `View`s. Related: #173, #434, and #457.
When executing the script below on a sample image (e.g. _Dot Blot_), it will show a copy of the input before the Eval op and afterwards. Comparing the copy with...
See also: * https://github.com/remipassmoilesel/imagej-surf * https://github.com/herbertbay/SURF (original implementation) * Comparison with other detectors/descriptors: _Evaluation of Local Detectors and Descriptors for Fast Feature Matching_ (http://epubs.surrey.ac.uk/806146/1/miksik2012icpr.pdf)
It would be great to be able to use ops with the `@Parameter` annotation and as script parameter, as pointed out in a [forum thread](http://forum.imagej.net/t/script-parameters/3362/3?u=stelfrich). Something like: ```groovy // @Threshold(label="What...
Disable the persisting of a `ModuleItem`s if an `initialize()` method is set and is not empty. This way, `initialize()` can overwrite the value of a `ModuleItem` even if `persist=true` is...
The two implementations ([`POM.compareVersions()`](https://github.com/scijava/scijava-common/blob/9554f8f35f6aa1319f7b02587e266064a3873181/src/main/java/org/scijava/util/POM.java#L298-L359) and [`VersionUtils.compare()`](https://github.com/scijava/scijava-common/blob/9554f8f35f6aa1319f7b02587e266064a3873181/src/main/java/org/scijava/util/VersionUtils.java#L117-L135)) are semantically identical and should be reconciled. - [ ] Deprecate `POM.compareVersions()` - [ ] Use `VersionUtils.compare()` in `POM.compareTo()` - [ ] Keep Javadoc...
@ctrueden on ImageJ-devel: > I am guessing what you want is all pre- and post-processing to occur _except_ for the final display of outputs? I agree it would be nice...
The current implementation of `AbstractChecker.isFormat()` (which is heavily used during file opening via SCIFIO) uses `DataHandleService.readBuffer(Location)` to retrieve a `DataHandle` for a `Location` (see [`AbstractChecker.java#L97`](https://github.com/scifio/scifio/blob/master/src/main/java/io/scif/AbstractChecker.java#L97)). This handle is subsequently used...
There was a call for implementation of the protein proximity index in Coloc_2 on the [Coloc page of the ImageJ/Fiji wiki](http://imagej.net/Colocalization_Analysis) that I have removed: > Maybe someone wants to...