Uses of Class
inra.ijpb.morphology.strel.CuboidStrel

Packages that use CuboidStrel
Package Description
inra.ijpb.morphology.strel
A collection of Structuring Element ("Strel") implementations for mathematical morphology.
  • Uses of CuboidStrel in inra.ijpb.morphology.strel

    Methods in inra.ijpb.morphology.strel that return CuboidStrel
    Modifier and Type Method Description
    static CuboidStrel CuboidStrel.fromDiameter​(int diam)
    Creates a new cube-shape structuring element with the specified diameter (equal to cube side length).
    static CuboidStrel CuboidStrel.fromDiameterList​(int diamX, int diamY, int diamZ)
    Creates a 3D structuring element with a cuboid shape and different sizes depending on direction.
    static CuboidStrel CuboidStrel.fromRadius​(int radius)
    Creates a new cube-shape structuring element with the specified radius (such that cube side length equals 2 * radius + 1).
    static CuboidStrel CuboidStrel.fromRadiusList​(int radiusX, int radiusY, int radiusZ)
    Creates a 3D structuring element with a cuboid shape and different sizes depending on direction.
    CuboidStrel CuboidStrel.reverse()
    Returns a cuboidal structuring element with same size, but offset located symmetrically with respect to structuring element center.