Uses of Interface
org.anchoranalysis.image.voxel.buffer.slice.SliceBufferIndex
| 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.buffer.slice |
A container with voxel-buffers for each z-slice.
|
| org.anchoranalysis.image.voxel.factory |
Creates new instances of
Voxels and VoxelsUntyped with specific data-types. |
-
Uses of SliceBufferIndex in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return SliceBufferIndex Modifier and Type Method Description SliceBufferIndex<T>Voxels. slices()An index mapping slice of voxels (in the z dimension) to a particular buffer with the corresponding voxel intensities.Constructors in org.anchoranalysis.image.voxel with parameters of type SliceBufferIndex Constructor Description Voxels(SliceBufferIndex<T> slices, VoxelsFactoryTypeBound<T> factory, VoxelsArithmetic arithmetic)VoxelsFloat(SliceBufferIndex<FloatBuffer> buffer)Create from a buffer, indexed by slice.VoxelsUnsignedByte(SliceBufferIndex<UnsignedByteBuffer> buffer)Create from a buffer, indexed by slice.VoxelsUnsignedInt(SliceBufferIndex<UnsignedIntBuffer> buffer)Create from a buffer, indexed by slice.VoxelsUnsignedShort(SliceBufferIndex<UnsignedShortBuffer> buffer)Create from a buffer, indexed by slice. -
Uses of SliceBufferIndex in org.anchoranalysis.image.voxel.binary
Methods in org.anchoranalysis.image.voxel.binary that return SliceBufferIndex Modifier and Type Method Description SliceBufferIndex<T>BinaryVoxels. slices()An index mapping slice of voxels (in the z dimension) to a particular buffer with the corresponding voxel intensities. -
Uses of SliceBufferIndex in org.anchoranalysis.image.voxel.buffer.slice
Classes in org.anchoranalysis.image.voxel.buffer.slice that implement SliceBufferIndex Modifier and Type Class Description classFromByteImplementation ofSliceBufferIndexwith voxels of type unsigned byte.classFromFloatImplementation ofSliceBufferIndexwith voxels of type float.classFromIntImplementation ofSliceBufferIndexwith voxels of type unsigned int.classFromShortImplementation ofSliceBufferIndexwith voxels of type unsigned short.Methods in org.anchoranalysis.image.voxel.buffer.slice that return SliceBufferIndex Modifier and Type Method Description static SliceBufferIndex<UnsignedByteBuffer>FromByte. createInitialized(Extent extent)Create a buffer of a particular size, that has been initialized.static SliceBufferIndex<FloatBuffer>FromFloat. createInitialized(Extent extent)Create a buffer of a particular size, that has been initialized.static SliceBufferIndex<UnsignedIntBuffer>FromInt. createInitialized(Extent extent)Create a buffer of a particular size, that has been initialized.static SliceBufferIndex<UnsignedShortBuffer>FromShort. createInitialized(Extent extent)Create a buffer of a particular size, that has been initialized.static SliceBufferIndex<UnsignedByteBuffer>FromByte. createUninitialized(Extent extent)Create a buffer of a particular size, that has not been initialized.static SliceBufferIndex<FloatBuffer>FromFloat. createUninitialized(Extent extent)Create a buffer of a particular size, that has not been initialized.static SliceBufferIndex<UnsignedIntBuffer>FromInt. createUninitialized(Extent extent)Create a buffer of a particular size, that has not been initialized.static SliceBufferIndex<UnsignedShortBuffer>FromShort. createUninitialized(Extent extent)Create a buffer of a particular size, that has not been initialized. -
Uses of SliceBufferIndex in org.anchoranalysis.image.voxel.factory
Methods in org.anchoranalysis.image.voxel.factory with parameters of type SliceBufferIndex Modifier and Type Method Description Voxels<T>VoxelsFactoryTypeBound. create(SliceBufferIndex<T> voxels)Create a newVoxelsthat has been initialized with buffers fromSliceBufferIndex.<T> VoxelsUntypedVoxelsFactory. createFrom(SliceBufferIndex<T> buffer, VoxelDataType dataType)Creates voxels from a particularSliceBufferIndexwith specified type.