Uses of Interface
inra.ijpb.data.image.Image3D
Package | Description |
---|---|
inra.ijpb.data.image |
Some classes to access image data in a unified and hopefully efficient way.
|
inra.ijpb.morphology |
Mathematical Morphology filters and reconstructions.
|
-
Uses of Image3D in inra.ijpb.data.image
Classes in inra.ijpb.data.image that implement Image3D Modifier and Type Class Description class
ByteStackWrapper
Access the data of a 3D image containing gray8 values stored as bytes.class
FloatStackWrapper
Access the data of a 3D image containing intensity values stored as float.class
ShortStackWrapper
Access the data of a 3D image containing gray16 values stored as short.Methods in inra.ijpb.data.image that return Image3D Modifier and Type Method Description static Image3D
Images3D. createWrapper(ij.ImageStack stack)
Converts the input ImageStack into an instance of Image3D, depending on the data type stored in the stack. -
Uses of Image3D in inra.ijpb.morphology
Methods in inra.ijpb.morphology with parameters of type Image3D Modifier and Type Method Description static void
FloodFill3D. floodFillFloat(Image3D inputImage, int x0, int y0, int z0, Image3D outputImage, float value, int conn)
Assigns to all the neighbor voxels of (x0,y0,z0) that have the same voxel value ininputImage
, the specified new value (value
) inoutputImage
, using the specified connectivity.