Uses of Interface
org.anchoranalysis.image.voxel.extracter.VoxelsExtracter
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel |
Data-structures to store and manipulate image raster-data or voxels.
|
| org.anchoranalysis.image.voxel.binary |
The
BinaryVoxels class and related operations. |
| org.anchoranalysis.image.voxel.extracter |
Methods to read/copy/duplicate portions of voxels.
|
| org.anchoranalysis.image.voxel.object |
The fundamental data class that is an
ObjectMask
and related structures. |
-
Uses of VoxelsExtracter in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return VoxelsExtracter Modifier and Type Method Description VoxelsExtracter<T>BoundedVoxels. extract()Extracts value from voxels using global coordinates (relative to the image as a whole).abstract VoxelsExtracter<T>Voxels. extract()Interface that allows read/copy/duplication operations to be performed regarding the voxels intensities.VoxelsExtracter<FloatBuffer>VoxelsFloat. extract()VoxelsExtracter<UnsignedByteBuffer>VoxelsUnsignedByte. extract()VoxelsExtracter<UnsignedIntBuffer>VoxelsUnsignedInt. extract()VoxelsExtracter<UnsignedShortBuffer>VoxelsUnsignedShort. extract()VoxelsExtracter<?>VoxelsUntyped. extract()Interface that allows read/copy/duplication operations to be performed regarding the voxels intensities. -
Uses of VoxelsExtracter in org.anchoranalysis.image.voxel.binary
Methods in org.anchoranalysis.image.voxel.binary that return VoxelsExtracter Modifier and Type Method Description VoxelsExtracter<T>BinaryVoxels. extract()Interface that allows read/copy/duplication operations to be performed regarding the voxels intensities. -
Uses of VoxelsExtracter in org.anchoranalysis.image.voxel.extracter
Methods in org.anchoranalysis.image.voxel.extracter that return VoxelsExtracter Modifier and Type Method Description static <T> VoxelsExtracter<T>VoxelsExtracterFactory. atCorner(ReadableTuple3i corner, VoxelsExtracter<T> delegate)Projects aVoxelsExtracterto a corner in a larger global space.static VoxelsExtracter<FloatBuffer>VoxelsExtracterFactory. createFloat(Voxels<FloatBuffer> voxels)Create voxels-extracter forFloatBuffer.static VoxelsExtracter<UnsignedByteBuffer>VoxelsExtracterFactory. createUnsignedByte(Voxels<UnsignedByteBuffer> voxels)Create voxels-extracter forUnsignedByteBuffer.static VoxelsExtracter<UnsignedIntBuffer>VoxelsExtracterFactory. createUnsignedInt(Voxels<UnsignedIntBuffer> voxels)Create voxels-extracter forUnsignedIntBuffer.static VoxelsExtracter<UnsignedShortBuffer>VoxelsExtracterFactory. createUnsignedShort(Voxels<UnsignedShortBuffer> voxels)Create voxels-extracter forUnsignedShortBuffer.Methods in org.anchoranalysis.image.voxel.extracter with parameters of type VoxelsExtracter Modifier and Type Method Description static <T> VoxelsExtracter<T>VoxelsExtracterFactory. atCorner(ReadableTuple3i corner, VoxelsExtracter<T> delegate)Projects aVoxelsExtracterto a corner in a larger global space. -
Uses of VoxelsExtracter in org.anchoranalysis.image.voxel.object
Methods in org.anchoranalysis.image.voxel.object that return VoxelsExtracter Modifier and Type Method Description VoxelsExtracter<UnsignedByteBuffer>ObjectMask. extract()Provides methods to read/copy/duplicate regions of voxels.