Uses of Class
org.anchoranalysis.image.voxel.buffer.primitive.UnsignedIntBuffer
Packages that use UnsignedIntBuffer
Package
Description
Data-structures to store and manipulate image raster-data or voxels.
Arithmetic operations for
Voxels
.Assigns values to some or all voxels.
The
BinaryVoxels
class and related operations.A buffer of voxel-values, usually corresponding to a single z-slice in
Voxels
.Conversion of both primitive data types and image structures between Anchor's data-structures and
other representations.
A container with voxel-buffers for each z-slice.
Converting
Voxels
to different data-types.Methods to read/copy/duplicate portions of voxels.
Creates new instances of
Voxels
and VoxelsUntyped
with specific data-types.Classes for calculating differnet kind of projections of voxel values across multiple buffers.
Classes for performing both a Maximum Intensity
Projection and a minimum projection.
Converts the byte stream opened by Bioformats into channels of
IntBuffer
.Encoding voxels in a watershed-transformation implementation.
-
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionVoxelsUntyped.asInt()
Casts to use aUnsignedIntBuffer
if the voxels contain this data-type, otherwise throws aIncorrectVoxelTypeException
.VoxelsUnsignedInt.extract()
Constructor parameters in org.anchoranalysis.image.voxel with type arguments of type UnsignedIntBufferModifierConstructorDescriptionCreate from a buffer, indexed by slice. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.arithmetic
Method parameters in org.anchoranalysis.image.voxel.arithmetic with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelsArithmetic
VoxelsArithmeticFactory.createUnsignedInt
(Extent extent, IntFunction<UnsignedIntBuffer> bufferForSlice) Create aVoxelsArithmetic
forUnsignedIntBuffer
. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.assigner
Method parameters in org.anchoranalysis.image.voxel.assigner with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelsAssigner
VoxelsAssignerFactory.createUnsignedInt
(Voxels<UnsignedIntBuffer> voxels, int valueToAssign) Create a aVoxelsAssigner
for aUnsignedIntBuffer
. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.binary
Methods in org.anchoranalysis.image.voxel.binary that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic BinaryVoxels
<UnsignedIntBuffer> BinaryVoxelsFactory.reuseInt
(Voxels<UnsignedIntBuffer> voxels, BinaryValuesInt binaryValues) Reuses an existing voxel-buffer (of type unsigned int) as a binary-version which should have only two intensity-values representing off and on.Method parameters in org.anchoranalysis.image.voxel.binary with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic BinaryVoxels
<UnsignedIntBuffer> BinaryVoxelsFactory.reuseInt
(Voxels<UnsignedIntBuffer> voxels, BinaryValuesInt binaryValues) Reuses an existing voxel-buffer (of type unsigned int) as a binary-version which should have only two intensity-values representing off and on. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.binary.connected
Method parameters in org.anchoranalysis.image.voxel.binary.connected with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionObjectsFromConnectedComponentsFactory.createUnsignedInt
(BinaryVoxels<UnsignedIntBuffer> voxels) Finds the connected-components in unsigned int voxels. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.buffer
Methods in org.anchoranalysis.image.voxel.buffer that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelBuffer<UnsignedIntBuffer>[]
VoxelBufferFactory.allocateUnsignedIntArray
(int size) Creates an array of unsigned int voxel-buffers of given size.static VoxelBuffer
<UnsignedIntBuffer> VoxelBufferWrap.unsignedIntArray
(int[] array) Wraps an unsigned-int buffer into a voxel-buffer.static VoxelBuffer
<UnsignedIntBuffer> VoxelBufferWrap.unsignedIntBuffer
(UnsignedIntBuffer buffer) Wraps an unsigned-int buffer (represented by a NIO signed-buffer) into a voxel-buffer.Methods in org.anchoranalysis.image.voxel.buffer with parameters of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelBuffer
<UnsignedIntBuffer> VoxelBufferWrap.unsignedIntBuffer
(UnsignedIntBuffer buffer) Wraps an unsigned-int buffer (represented by a NIO signed-buffer) into a voxel-buffer. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.buffer.primitive
Methods in org.anchoranalysis.image.voxel.buffer.primitive that return UnsignedIntBufferModifier and TypeMethodDescriptionstatic UnsignedIntBuffer
UnsignedIntBuffer.allocate
(int capacity) Allocates a new (direct) buffer of unsigned-ints.static UnsignedIntBuffer
UnsignedIntBuffer.wrapRaw
(int[] array) Exposes a raw int-array as a buffer with unsigned-ints.static UnsignedIntBuffer
Exposes a rawUnsignedIntBuffer
as a buffer with unsigned-ints. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.buffer.slice
Methods in org.anchoranalysis.image.voxel.buffer.slice that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic SliceBufferIndex
<UnsignedIntBuffer> FromInt.createInitialized
(Extent extent) Create a buffer of a particular size, that has been initialized.static SliceBufferIndex
<UnsignedIntBuffer> FromInt.createUninitialized
(Extent extent) Create a buffer of a particular size, that has not been initialized.FromInt.slice
(int z) Method parameters in org.anchoranalysis.image.voxel.buffer.slice with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionvoid
FromInt.replaceSlice
(int z, VoxelBuffer<UnsignedIntBuffer> sliceToAssign) -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.convert
Methods in org.anchoranalysis.image.voxel.convert with parameters of type UnsignedIntBufferModifier and TypeMethodDescriptionprotected void
ToUnsignedInt.convertFloat
(FloatBuffer in, UnsignedIntBuffer out) protected void
ToUnsignedInt.convertUnsignedByte
(UnsignedByteBuffer in, UnsignedIntBuffer out) protected void
ToFloatNoScaling.convertUnsignedInt
(UnsignedIntBuffer in, FloatBuffer out) protected void
ToUnsignedByteNoScaling.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedByteBuffer out) protected void
ToUnsignedByteScaleByMaxValue.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedByteBuffer out) protected void
ToUnsignedByteScaleByMinMaxValue.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedByteBuffer out) protected void
ToUnsignedByteScaleByType.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedByteBuffer out) protected void
ToUnsignedInt.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedIntBuffer out) protected void
ToUnsignedShortNoScaling.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedShortBuffer out) protected void
ToUnsignedShortScaleByType.convertUnsignedInt
(UnsignedIntBuffer in, UnsignedShortBuffer out) protected abstract void
VoxelsConverter.convertUnsignedInt
(UnsignedIntBuffer in, T out) Copies a value from the current position in aUnsignedIntBuffer
to the current position in a buffer of typeT
.protected void
ToUnsignedInt.convertUnsignedShort
(UnsignedShortBuffer in, UnsignedIntBuffer out) Method parameters in org.anchoranalysis.image.voxel.convert with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionvoid
VoxelsConverter.copyFromUnsignedInt
(Voxels<UnsignedIntBuffer> from, Voxels<T> to) Copies voxels from a source of type @{link UnsignedIntBuffer} to voxels of typeT
. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.extracter
Methods in org.anchoranalysis.image.voxel.extracter that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelsExtracter
<UnsignedIntBuffer> VoxelsExtracterFactory.createUnsignedInt
(Voxels<UnsignedIntBuffer> voxels) Create voxels-extracter forUnsignedIntBuffer
.Method parameters in org.anchoranalysis.image.voxel.extracter with type arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionstatic VoxelsExtracter
<UnsignedIntBuffer> VoxelsExtracterFactory.createUnsignedInt
(Voxels<UnsignedIntBuffer> voxels) Create voxels-extracter forUnsignedIntBuffer
. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.factory
Methods in org.anchoranalysis.image.voxel.factory that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionVoxelsFactory.getUnsignedInt()
A factory that creates voxels of type unsigned int. -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.projection
Methods in org.anchoranalysis.image.voxel.projection that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionMeanIntensityProjection.createUnsignedInt
(Extent extent) abstract ProjectableBuffer
<UnsignedIntBuffer> Projection.createUnsignedInt
(Extent extent) Creates a buffer for a maximum-intensity projection for unsigned int voxels.StandardDeviationIntensityProjection.createUnsignedInt
(Extent extent) -
Uses of UnsignedIntBuffer in org.anchoranalysis.image.voxel.projection.extrema
Methods in org.anchoranalysis.image.voxel.projection.extrema that return types with arguments of type UnsignedIntBuffer -
Uses of UnsignedIntBuffer in org.anchoranalysis.io.bioformats.copyconvert.toint
Methods in org.anchoranalysis.io.bioformats.copyconvert.toint with parameters of type UnsignedIntBufferModifier and TypeMethodDescriptionprotected void
UnsignedIntFromUnsignedInt.copyChangeOrientation
(ByteBuffer source, boolean littleEndian, int channelIndexRelative, UnsignedIntBuffer destination, OrientationChange orientationCorrection) protected void
UnsignedIntFromUnsignedInt.copyKeepOrientation
(ByteBuffer source, boolean littleEndian, int channelIndexRelative, UnsignedIntBuffer destination) -
Uses of UnsignedIntBuffer in org.anchoranalysis.plugin.image.segment.watershed.encoding
Methods in org.anchoranalysis.plugin.image.segment.watershed.encoding that return types with arguments of type UnsignedIntBufferModifier and TypeMethodDescriptionEncodedVoxels.voxels()
The voxels containing encoded information.Constructors in org.anchoranalysis.plugin.image.segment.watershed.encoding with parameters of type UnsignedIntBufferModifierConstructorDescriptionEncodedIntBuffer
(UnsignedIntBuffer delegate, WatershedEncoding encoding) Constructor parameters in org.anchoranalysis.plugin.image.segment.watershed.encoding with type arguments of type UnsignedIntBufferModifierConstructorDescriptionEncodedVoxels
(Voxels<UnsignedIntBuffer> voxels) Creates a newEncodedVoxels
instance.