Uses of Interface
org.anchoranalysis.image.voxel.assigner.VoxelsAssigner
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel |
Data-structures to store and manipulate image raster-data or voxels.
|
| org.anchoranalysis.image.voxel.assigner |
Assigns values to some or all voxels.
|
| org.anchoranalysis.image.voxel.binary |
The
BinaryVoxels class and related operations. |
| org.anchoranalysis.image.voxel.object |
The fundamental data class that is an
ObjectMask
and related structures. |
-
Uses of VoxelsAssigner in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return VoxelsAssigner Modifier and Type Method Description VoxelsAssignerBoundedVoxels. assignValue(int valueToAssign)Assigns a value to a bounded-voxels accepting global coordinates for objects, boxes etc.abstract VoxelsAssignerVoxels. assignValue(int valueToAssign)Interface that allows assignment of a particular value to all or subsets of the voxels.VoxelsAssignerVoxelsFloat. assignValue(int valueToAssign)VoxelsAssignerVoxelsUnsignedByte. assignValue(int valueToAssign)VoxelsAssignerVoxelsUnsignedInt. assignValue(int valueToAssign)VoxelsAssignerVoxelsUnsignedShort. assignValue(int valueToAssign)VoxelsAssignerVoxelsUntyped. assignValue(int valueToAssign)Interface that allows assignment of a particular value to all or subsets of the voxels. -
Uses of VoxelsAssigner in org.anchoranalysis.image.voxel.assigner
Methods in org.anchoranalysis.image.voxel.assigner that return VoxelsAssigner Modifier and Type Method Description static VoxelsAssignerVoxelsAssignerFactory. createFloat(Voxels<FloatBuffer> voxels, int valueToAssign)Create aVoxelsAssignerfor aFloatBuffer.static VoxelsAssignerVoxelsAssignerFactory. createUnsignedByte(Voxels<UnsignedByteBuffer> voxels, int valueToAssign)Create aVoxelsAssignerfor aUnsignedByteBuffer.static VoxelsAssignerVoxelsAssignerFactory. createUnsignedInt(Voxels<UnsignedIntBuffer> voxels, int valueToAssign)Create a aVoxelsAssignerfor aUnsignedIntBuffer.static VoxelsAssignerVoxelsAssignerFactory. createUnsignedShort(Voxels<UnsignedShortBuffer> voxels, int valueToAssign)Create aVoxelsAssignerfor aUnsignedShortBuffer.static VoxelsAssignerVoxelsAssignerFactory. shiftBackBy(VoxelsAssigner voxelsAssigner, ReadableTuple3i shift)Shifts all coordinates backwards before passing to anotherVoxelsAssigner.Methods in org.anchoranalysis.image.voxel.assigner with parameters of type VoxelsAssigner Modifier and Type Method Description static VoxelsAssignerVoxelsAssignerFactory. shiftBackBy(VoxelsAssigner voxelsAssigner, ReadableTuple3i shift)Shifts all coordinates backwards before passing to anotherVoxelsAssigner. -
Uses of VoxelsAssigner in org.anchoranalysis.image.voxel.binary
Methods in org.anchoranalysis.image.voxel.binary that return VoxelsAssigner Modifier and Type Method Description VoxelsAssignerBinaryVoxels. assignOff()Creates an assigner that may set the off state in subsequently specified regions of the voxels.VoxelsAssignerBinaryVoxels. assignOn()Creates an assigner that may set the on state in subsequently specified regions of the voxels. -
Uses of VoxelsAssigner in org.anchoranalysis.image.voxel.object
Methods in org.anchoranalysis.image.voxel.object that return VoxelsAssigner Modifier and Type Method Description VoxelsAssignerObjectMask. assignOff()Assigns the off value to voxels, expecting global coordinates.VoxelsAssignerObjectMask. assignOn()Assigns the on value to voxels, expecting global coordinates.