Uses of Interface
org.anchoranalysis.image.voxel.buffer.ProjectableBuffer
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel.projection |
Classes for calculating differnet kind of projections of voxel values across multiple buffers.
|
| org.anchoranalysis.image.voxel.projection.extrema |
Classes for performing both a Maximum Intensity
Projection and a minimum projection.
|
-
Uses of ProjectableBuffer in org.anchoranalysis.image.voxel.projection
Methods in org.anchoranalysis.image.voxel.projection that return ProjectableBuffer Modifier and Type Method Description static <T> ProjectableBuffer<T>MeanIntensityProjection. create(VoxelDataType dataType, Extent extent)Creates a buffer for a mean-intensity projection for unsigned byte voxels.static <T> ProjectableBuffer<T>StandardDeviationIntensityProjection. create(VoxelDataType dataType, Extent extent)Creates a buffer for a standard-deviation projection for unsigned byte voxels.static ProjectableBuffer<FloatBuffer>MeanIntensityProjection. createFloat(Extent extent)Creates a buffer for a mean-intensity projection for float voxels.static ProjectableBuffer<FloatBuffer>StandardDeviationIntensityProjection. createFloat(Extent extent)Creates a buffer for a standard-deviation projection for float voxels.static ProjectableBuffer<UnsignedByteBuffer>MeanIntensityProjection. createUnsignedByte(Extent extent)Creates a buffer for a mean-intensity projection for unsigned byte voxels.static ProjectableBuffer<UnsignedByteBuffer>StandardDeviationIntensityProjection. createUnsignedByte(Extent extent)Creates a buffer for a standard-deviation projection for unsigned byte voxels.static ProjectableBuffer<UnsignedIntBuffer>MeanIntensityProjection. createUnsignedInt(Extent extent)Creates a buffer for a mean-intensity projection for unsigned int voxels.static ProjectableBuffer<UnsignedIntBuffer>StandardDeviationIntensityProjection. createUnsignedInt(Extent extent)Creates a buffer for a standard-deviation projection for unsigned int voxels.static ProjectableBuffer<UnsignedShortBuffer>MeanIntensityProjection. createUnsignedShort(Extent extent)Creates a buffer for a mean-intensity projection for unsigned short voxels.static ProjectableBuffer<UnsignedShortBuffer>StandardDeviationIntensityProjection. createUnsignedShort(Extent extent)Creates a buffer for a standard-deviation projection for unsigned short voxels. -
Uses of ProjectableBuffer in org.anchoranalysis.image.voxel.projection.extrema
Methods in org.anchoranalysis.image.voxel.projection.extrema that return ProjectableBuffer Modifier and Type Method Description static <T> ProjectableBuffer<T>MaxIntensityProjection. create(VoxelDataType dataType, Extent extent)Creates a buffer for a maximum-intensity projection for unsigned byte voxels.static <T> ProjectableBuffer<T>MinIntensityProjection. create(VoxelDataType dataType, Extent extent)Creates a buffer for a minimum-intensity projection for unsigned byte voxels.static ProjectableBuffer<FloatBuffer>MaxIntensityProjection. createFloat(Extent extent)Creates a buffer for a maximum-intensity projection for float voxels.static ProjectableBuffer<FloatBuffer>MinIntensityProjection. createFloat(Extent extent)Creates a buffer for a minimum-intensity projection for float voxels.static ProjectableBuffer<UnsignedByteBuffer>MaxIntensityProjection. createUnsignedByte(Extent extent)Creates a buffer for a maximum-intensity projection for unsigned byte voxels.static ProjectableBuffer<UnsignedByteBuffer>MinIntensityProjection. createUnsignedByte(Extent extent)Creates a buffer for a minimum-intensity projection for unsigned byte voxels.static ProjectableBuffer<UnsignedIntBuffer>MaxIntensityProjection. createUnsignedInt(Extent extent)Creates a buffer for a maximum-intensity projection for unsigned int voxels.static ProjectableBuffer<UnsignedIntBuffer>MinIntensityProjection. createUnsignedInt(Extent extent)Creates a buffer for a minimum-intensity projection for unsigned int voxels.static ProjectableBuffer<UnsignedShortBuffer>MaxIntensityProjection. createUnsignedShort(Extent extent)Creates a buffer for a maximum-intensity projection for unsigned short voxels.static ProjectableBuffer<UnsignedShortBuffer>MinIntensityProjection. createUnsignedShort(Extent extent)Creates a buffer for a minimum-intensity projection for unsigned short voxels.