Uses of Interface
inra.ijpb.math.ImageCalculator.Operation
Package | Description |
---|---|
inra.ijpb.math |
Some math operators for images that do not need calling ImageJ plugins.
|
-
Uses of ImageCalculator.Operation in inra.ijpb.math
Fields in inra.ijpb.math declared as ImageCalculator.Operation Modifier and Type Field Description static ImageCalculator.Operation
ImageCalculator.Operation. ABS_DIFF
Abs_diff operator, that computes the absolute value of the difference of values of the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. AND
And operator.static ImageCalculator.Operation
ImageCalculator.Operation. DIVIDES
Divides operator, that divides the values of the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. MAX
Max operator, that computes the maximum of the values from the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. MEAN
Mean operator, that computes the average of the values from the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. MIN
Min operator, that computes the minimum of the values from the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. MINUS
Minus operator, that subtracts values of the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. OR
Or operator.static ImageCalculator.Operation
ImageCalculator.Operation. PLUS
Plus operator, that adds values of the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. TIMES
Times operator, that multiples values of the two imagesstatic ImageCalculator.Operation
ImageCalculator.Operation. XOR
Exclusive or operator.Methods in inra.ijpb.math with parameters of type ImageCalculator.Operation Modifier and Type Method Description static ij.ImagePlus
ImageCalculator. combineImages(ij.ImagePlus image1, ij.ImagePlus image2, ImageCalculator.Operation op)
Combines two images using the specified operation.static ij.ImageStack
ImageCalculator. combineImages(ij.ImageStack image1, ij.ImageStack image2, ImageCalculator.Operation op)
Combines two images using the specified operation.static ij.process.ImageProcessor
ImageCalculator. combineImages(ij.process.ImageProcessor image1, ij.process.ImageProcessor image2, ImageCalculator.Operation op)
Example that computes the maximum over two images: