Package inra.ijpb.morphology.attrfilt
Interface SizeOpening3D
- All Superinterfaces:
Algo
- All Known Implementing Classes:
SizeOpening3DQueue
public interface SizeOpening3D extends Algo
Size opening for 3D gray level images. Remove all cross sections whose size
is smaller than the specified number of voxels.
- Author:
- dlegland
-
Method Summary
Modifier and Type Method Description ij.ImageStack
process(ij.ImageStack image, int minVolume)
Applies size opening on the input 3D grayscale image and returns the result.Methods inherited from interface inra.ijpb.algo.Algo
addAlgoListener, removeAlgoListener
-
Method Details
-
process
ij.ImageStack process(ij.ImageStack image, int minVolume)Applies size opening on the input 3D grayscale image and returns the result.- Parameters:
image
- the image to process.minVolume
- the minimal number of voxels the regions need to keep.- Returns:
- the result of size opening.
-