public class AttributeFiltering extends Object
| Constructor and Description | 
|---|
AttributeFiltering()  | 
| Modifier and Type | Method and Description | 
|---|---|
static ij.process.ImageProcessor | 
areaOpening(ij.process.ImageProcessor image,
           int minArea)
Applies grayscale area opening on input image, by retaining only the
 connected components that contain at least the specified number of pixels. 
 | 
static ij.ImagePlus | 
sizeOpening(ij.ImagePlus imagePlus,
           int minSize)
Applies grayscale size opening on input image, by retaining only the
 connected components that contain at least the specified number of elements
 (pixels or voxels). 
 | 
static ij.ImageStack | 
volumeOpening(ij.ImageStack image,
             int minVolume)
Applies grayscale volume opening on input 3D image, by retaining only the
 connected components that contain at least the specified number of voxels. 
 | 
static ij.ImageStack | 
volumeOpening(ij.ImageStack image,
             int minVolume,
             int connectivity)
Applies grayscale volume opening on input 3D image, by retaining only the
 connected components that contain at least the specified number of voxels. 
 | 
public static final ij.ImagePlus sizeOpening(ij.ImagePlus imagePlus,
                                             int minSize)
imagePlus - instance of ImagePlus containing the input 2D or 3D imageminSize - the minimum number of pixels or voxels at a given gray levelpublic static final ij.process.ImageProcessor areaOpening(ij.process.ImageProcessor image,
                                                          int minArea)
image - input grayscale imageminArea - the minimum number of pixels at a given gray levelpublic static final ij.ImageStack volumeOpening(ij.ImageStack image,
                                                int minVolume)
image - input 3D grayscale imageminVolume - the minimum number of voxels at a given gray levelpublic static final ij.ImageStack volumeOpening(ij.ImageStack image,
                                                int minVolume,
                                                int connectivity)
image - input 3D grayscale imageminVolume - the minimum number of voxels at a given gray levelconnectivity - 3D connectivity to useCopyright © 2014–2023 INRA-IJPB Modeling and Digital Imaging lab. All rights reserved.