public class Morpho
extends java.lang.Object
| Constructor and Description |
|---|
Morpho() |
| Modifier and Type | Method and Description |
|---|---|
static ij.ImagePlus |
dilate(ij.ImagePlus src)
Compute 3D morphological dilation (max) of
src image. |
void |
dilate(ij.ImageStack src,
ij.ImageStack dest)
Perform morphological dilation (max) of
src image, write results to
dest image. |
static ij.ImagePlus |
erode(ij.ImagePlus src)
Compute 3D morphological erosion (min) of
src image. |
void |
erode(ij.ImageStack src,
ij.ImageStack dest)
Perform morphological erosion (min) of
src image, write results to
dest image. |
static ij.ImagePlus |
median(ij.ImagePlus src)
Compute 3D median filter of an image, assuming equally sized pixels
|
static ij.ImageStack |
median(ij.ImageStack src) |
void |
median(ij.ImageStack src,
ij.ImageStack dest)
Perform morphological erosion (min) of
src image, write results to
dest image. |
public static ij.ImagePlus dilate(ij.ImagePlus src)
src image.src - input imagepublic void dilate(ij.ImageStack src,
ij.ImageStack dest)
src image, write results to
dest image. src and dest must be of the same type and
size.src - Source image.dest - Destination image.public static ij.ImagePlus erode(ij.ImagePlus src)
src image.src - input imagepublic void erode(ij.ImageStack src,
ij.ImageStack dest)
src image, write results to
dest image. src and dest must be of the same type and
size.src - Source image.dest - Destination image.public static ij.ImagePlus median(ij.ImagePlus src)
src - input imagepublic static ij.ImageStack median(ij.ImageStack src)
public void median(ij.ImageStack src,
ij.ImageStack dest)
src image, write results to
dest image. src and dest must be of the same type and
size.src - Source image.dest - Destination image.