Uses of Interface
inra.ijpb.morphology.Strel3D
| Package | Description |
|---|---|
| inra.ijpb.morphology |
Mathematical Morphology filters and reconstructions.
|
| inra.ijpb.morphology.directional |
Morphological directional filters.
|
| inra.ijpb.morphology.filter |
Morphological filtering operators implemented as classes.
|
| inra.ijpb.morphology.strel |
A collection of Structuring Element ("Strel") implementations for mathematical morphology.
|
| inra.ijpb.plugins |
Contains plugins, for integration with ImageJ GUI.
|
-
Uses of Strel3D in inra.ijpb.morphology
Subinterfaces of Strel3D in inra.ijpb.morphology Modifier and Type Interface Description interfaceStrelInterface for planar structuring elements.Methods in inra.ijpb.morphology that return Strel3D Modifier and Type Method Description Strel3DStrel3D.Shape. fromDiameter(int diam)Creates a structuring element of the given type and with the specified diameter.Strel3DStrel3D.Shape. fromDiameterList(int diamX, int diamY, int diamZ)Creates a structuring element of the given type and with the specified diameter.Strel3DStrel3D.Shape. fromRadius(int radius)Creates a structuring element of the given type and with the specified radius.Strel3DStrel3D.Shape. fromRadiusList(int radiusX, int radiusY, int radiusZ)Creates a structuring element of the given type and with the specified radius for each dimension.Strel3DStrel3D. reverse()Returns a reversed (i.e. symmetric wrt the origin) version of this structuring element.Methods in inra.ijpb.morphology with parameters of type Strel3D Modifier and Type Method Description ij.ImageStackMorphology.Operation. apply(ij.ImageStack image, Strel3D strel)Applies the current operator to the input 3D image.static ij.ImagePlusMorphology. blackTopHat(ij.ImagePlus imagePlus, Strel3D strel)Computes black top hat (or "bottom hat") of the original image.static ij.ImageStackMorphology. blackTopHat(ij.ImageStack image, Strel3D strel)Computes black top hat (or "bottom hat") of the original image.static ij.ImagePlusMorphology. closing(ij.ImagePlus imagePlus, Strel3D strel)Performs morphological closing on the input image.static ij.ImageStackMorphology. closing(ij.ImageStack image, Strel3D strel)Performs morphological closing on the input 3D image.static ij.ImagePlusMorphology. dilation(ij.ImagePlus imagePlus, Strel3D strel)Performs morphological dilation on the input image.static ij.ImageStackMorphology. dilation(ij.ImageStack image, Strel3D strel)Performs morphological dilation on the input 3D image.static ij.ImagePlusMorphology. erosion(ij.ImagePlus imagePlus, Strel3D strel)Performs morphological erosion on the input image.static ij.ImageStackMorphology. erosion(ij.ImageStack image, Strel3D strel)Performs morphological erosion on the input 3D image.static ij.ImagePlusMorphology. externalGradient(ij.ImagePlus imagePlus, Strel3D strel)Computes the morphological external gradient of the input image.static ij.ImageStackMorphology. externalGradient(ij.ImageStack image, Strel3D strel)Computes the morphological external gradient of the input 3D image.static ij.ImagePlusMorphology. gradient(ij.ImagePlus imagePlus, Strel3D strel)Computes the morphological gradient of the input image.static ij.ImageStackMorphology. gradient(ij.ImageStack image, Strel3D strel)Computes the morphological gradient of the input 3D image.static ij.ImagePlusMorphology. internalGradient(ij.ImagePlus imagePlus, Strel3D strel)Computes the morphological internal gradient of the input image.static ij.ImageStackMorphology. internalGradient(ij.ImageStack image, Strel3D strel)Computes the morphological internal gradient of the 3D input image.static ij.ImagePlusMorphology. laplacian(ij.ImagePlus imagePlus, Strel3D strel)Computes the morphological Laplacian of the 3D input image.static ij.ImageStackMorphology. laplacian(ij.ImageStack image, Strel3D strel)Computes the morphological Laplacian of the 3D input image.static ij.ImagePlusMorphology. opening(ij.ImagePlus imagePlus, Strel3D strel)Performs morphological opening on the input image.static ij.ImageStackMorphology. opening(ij.ImageStack image, Strel3D strel)Performs morphological opening on the input 3D image.static ij.ImagePlusMorphology. whiteTopHat(ij.ImagePlus imagePlus, Strel3D strel)Computes white top hat of the original image.static ij.ImageStackMorphology. whiteTopHat(ij.ImageStack image, Strel3D strel)Computes 3D white top hat of the original image. -
Uses of Strel3D in inra.ijpb.morphology.directional
Classes in inra.ijpb.morphology.directional that implement Strel3D Modifier and Type Class Description classOrientedLineStrelA linear structuring element, defined by a length and an orientation. -
Uses of Strel3D in inra.ijpb.morphology.filter
Methods in inra.ijpb.morphology.filter that return Strel3D Modifier and Type Method Description Strel3DMorphologicalFilter. getStrel()Constructors in inra.ijpb.morphology.filter with parameters of type Strel3D Constructor Description BlackTopHat(Strel3D strel)Creates a new Black Top-Hat operator with the specified structuring element.Closing(Strel3D strel)Creates a new Morphological Closing operator with the specified structuring element.Dilation(Strel3D strel)Creates a new Morphological Dilation operator with the specified structuring element.Erosion(Strel3D strel)Creates a new Morphological Erosion operator with the specified structuring element.ExternalGradient(Strel3D strel)Creates a new External Gradient operator with the specified structuring element.Gradient(Strel3D strel)Creates a new Morphological Gradient operator with the specified structuring element.InternalGradient(Strel3D strel)Creates a new Internal Gradient operator with the specified structuring element.Laplacian(Strel3D strel)Creates a new Morphological Laplacian operator with the specified structuring element.Opening(Strel3D strel)Creates a new Morphological Opening operator with the specified structuring element.WhiteTopHat(Strel3D strel)Creates a new White Top-Hat operator with the specified structuring element. -
Uses of Strel3D in inra.ijpb.morphology.strel
Subinterfaces of Strel3D in inra.ijpb.morphology.strel Modifier and Type Interface Description interfaceInPlaceStrelA structuring element that can performs erosion or dilation directly in the original image buffer.interfaceInPlaceStrel3DA structuring element that can performs erosion or dilation directly in the original image stack.interfaceSeparableStrelInterface for structuring elements that can be decomposed into several "simpler" structuring elements.interfaceSeparableStrel3DInterface for structuring elements that can be decomposed into several "simpler" structuring elements.Classes in inra.ijpb.morphology.strel that implement Strel3D Modifier and Type Class Description classAbstractInPlaceStrelImplementation stub for in place Structuring elements.classAbstractInPlaceStrel3DImplementation stub for in place 3D Structuring elements.classAbstractSeparableStrelImplementation stub for separable Structuring elements.classAbstractSeparableStrel3DImplementation stub for separable 3D Structuring elements.classAbstractStrelImplementation basis for planar structuring elements.classAbstractStrel3DImplementation basis for 3D structuring elementsclassBallStrelA 3D structuring element with a ball shape, with same size in each direction.classChamferStrelDisk-shaped structuring element based on a chamfer mask and a radius.classChamferStrel3DclassCross3DStrel3D structuring element representing a 3x3x3 cross, that considers the center voxel together with the six orthogonal neighbors.classCross3x3StrelStructuring element representing a 3x3 cross, that considers the center pixels together with the four orthogonal neighbors.classCubeStrelA cubic structuring element, obtained by decomposition into linear structuring elements with the same size along each dimension.classCuboidStrelA cuboid structuring element, obtained by decomposition into linear structuring elements (that can have different sizes) along each dimension.classDiamondStrelStructuring element representing a diamond of a given diameter.classDiskStrelDisk structuring element.classEllipsoidStrelA 3D structuring element with an ellipsoidal shape, oriented along the three main axes of the image.classExtrudedStrelCreates a 3D strel by replicating a 2D strel on a given number of slices.classLinearDepthStrel3DAn horizontal linear structuring element of a given length.classLinearDiagDownStrelA diagonal linear structuring element of a given length, with direction vector (+1,+1) in image coordinate system.classLinearDiagUpStrelA diagonal linear structuring element of a given length, with direction vector (+1,-1) in image coordinate system.classLinearHorizontalStrelAn horizontal linear structuring element of a given length.classLinearVerticalStrelA vertical linear structuring element of a given length.classOctagonStrelAn Octagonal structuring element, obtained by decomposition into horizontal, vertical, and diagonal linear structuring elements.classSquareStrelA square structuring element, obtained by decomposition into horizontal and vertical linear structuring elements with the same size.Methods in inra.ijpb.morphology.strel that return Strel3D Modifier and Type Method Description Strel3DBallStrel. reverse()Strel3DChamferStrel3D. reverse()Strel3DCross3DStrel. reverse()Strel3DEllipsoidStrel. reverse()Returns this instance, as an ellipsoid is symmetric.Strel3DExtrudedStrel. reverse() -
Uses of Strel3D in inra.ijpb.plugins
Methods in inra.ijpb.plugins with parameters of type Strel3D Modifier and Type Method Description ij.ImagePlusMorphologicalFilter3DPlugin. process(ij.ImagePlus image, Morphology.Operation op, Strel3D strel)Applies the given operation to the given image.ij.ImagePlusMorphologicalFilterCross3DPlugin. process(ij.ImagePlus image, Morphology.Operation op, Strel3D strel)Applies the given operation to the given image.