Uses of Class
org.anchoranalysis.image.voxel.buffer.primitive.UnsignedShortBuffer
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel |
Data-structures to store and manipulate image raster-data or voxels.
|
| org.anchoranalysis.image.voxel.arithmetic |
Arithmetic operations for
Voxels. |
| org.anchoranalysis.image.voxel.assigner |
Assigns values to some or all voxels.
|
| org.anchoranalysis.image.voxel.buffer |
A buffer of voxel-values, usually corresponding to a single z-slice in
Voxels. |
| org.anchoranalysis.image.voxel.buffer.primitive |
Conversion of both primitive data types and image structures between Anchor's data-structures and
other representations.
|
| org.anchoranalysis.image.voxel.buffer.slice |
A container with voxel-buffers for each z-slice.
|
| org.anchoranalysis.image.voxel.convert |
Converting
Voxels to different data-types. |
| org.anchoranalysis.image.voxel.convert.bufferedimage |
Converts anchor data-structures to the
BufferedImage used by Java's AWT. |
| org.anchoranalysis.image.voxel.convert.imglib2 |
Converts anchor data-structures to those used by ImgLib2.
|
| org.anchoranalysis.image.voxel.extracter |
Methods to read/copy/duplicate portions of voxels.
|
| org.anchoranalysis.image.voxel.factory |
Creates new instances of
Voxels and VoxelsUntyped with specific data-types. |
| 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.
|
| org.anchoranalysis.image.voxel.resizer |
Different interpolator methods to use when scaling voxels.
|
-
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description Voxels<UnsignedShortBuffer>VoxelsUntyped. asShort()Casts to use aUnsignedShortBufferif the voxels contain this data-type, otherwise throws aIncorrectVoxelTypeException.VoxelsExtracter<UnsignedShortBuffer>VoxelsUnsignedShort. extract()Constructor parameters in org.anchoranalysis.image.voxel with type arguments of type UnsignedShortBuffer Constructor Description VoxelsUnsignedShort(SliceBufferIndex<UnsignedShortBuffer> buffer)Create from a buffer, indexed by slice. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.arithmetic
Method parameters in org.anchoranalysis.image.voxel.arithmetic with type arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelsArithmeticVoxelsArithmeticFactory. createUnsignedShort(Extent extent, IntFunction<UnsignedShortBuffer> bufferForSlice)Create aVoxelsArithmeticforUnsignedShortBuffer. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.assigner
Method parameters in org.anchoranalysis.image.voxel.assigner with type arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelsAssignerVoxelsAssignerFactory. createUnsignedShort(Voxels<UnsignedShortBuffer> voxels, int valueToAssign)Create aVoxelsAssignerfor aUnsignedShortBuffer. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.buffer
Methods in org.anchoranalysis.image.voxel.buffer that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelBuffer<UnsignedShortBuffer>VoxelBufferFactory. allocateUnsignedShort(int capacity)Allocates a new unsigned short voxel-buffers of given size.static VoxelBuffer<UnsignedShortBuffer>[]VoxelBufferFactory. allocateUnsignedShortArray(int size)Creates an array of unsigned short voxel-buffers of given size.static VoxelBuffer<UnsignedShortBuffer>VoxelBufferWrap. unsignedShortArray(short[] array)Wraps an existing array (encoding unsigned shorts as a signed array) as a voxel-buffer.static VoxelBuffer<UnsignedShortBuffer>VoxelBufferWrap. unsignedShortBuffer(UnsignedShortBuffer buffer)Wraps an unsigned-short buffer into a voxel-buffer.static VoxelBuffer<UnsignedShortBuffer>VoxelBufferWrap. unsignedShortRaw(ShortBuffer buffer)Wraps an unsigned-short buffer (represented by a NIO signed-buffer) into a voxel-buffer.Methods in org.anchoranalysis.image.voxel.buffer with parameters of type UnsignedShortBuffer Modifier and Type Method Description static VoxelBuffer<UnsignedShortBuffer>VoxelBufferWrap. unsignedShortBuffer(UnsignedShortBuffer buffer)Wraps an unsigned-short buffer into a voxel-buffer. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.buffer.primitive
Methods in org.anchoranalysis.image.voxel.buffer.primitive that return UnsignedShortBuffer Modifier and Type Method Description static UnsignedShortBufferUnsignedShortBuffer. allocate(int capacity)Allocates a new (direct) buffer of unsigned-shorts.static UnsignedShortBufferUnsignedShortBuffer. wrapRaw(short[] array)Exposes a raw short-array as a buffer with unsigned-shorts.static UnsignedShortBufferUnsignedShortBuffer. wrapRaw(ShortBuffer bufferRaw)Exposes a rawUnsignedShortBufferas a buffer with unsigned-shorts.Methods in org.anchoranalysis.image.voxel.buffer.primitive with parameters of type UnsignedShortBuffer Modifier and Type Method Description voidUnsignedShortBuffer. put(UnsignedShortBuffer source)Relative put-method from an unsigned short buffer, represented by aUnsignedShortBuffer. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.buffer.slice
Methods in org.anchoranalysis.image.voxel.buffer.slice that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description static SliceBufferIndex<UnsignedShortBuffer>FromShort. createInitialized(Extent extent)Create a buffer of a particular size, that has been initialized.static SliceBufferIndex<UnsignedShortBuffer>FromShort. createUninitialized(Extent extent)Create a buffer of a particular size, that has not been initialized.VoxelBuffer<UnsignedShortBuffer>FromShort. slice(int z)Method parameters in org.anchoranalysis.image.voxel.buffer.slice with type arguments of type UnsignedShortBuffer Modifier and Type Method Description voidFromShort. replaceSlice(int z, VoxelBuffer<UnsignedShortBuffer> sliceToAssign) -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.convert
Methods in org.anchoranalysis.image.voxel.convert with parameters of type UnsignedShortBuffer Modifier and Type Method Description protected voidToUnsignedShortNoScaling. convertFloat(FloatBuffer in, UnsignedShortBuffer out)protected voidToUnsignedShortScaleByType. convertFloat(FloatBuffer in, UnsignedShortBuffer out)Converts the current position in aFloatBufferto the current position in aUnsignedShortBuffer.protected voidToUnsignedShortNoScaling. convertUnsignedByte(UnsignedByteBuffer in, UnsignedShortBuffer out)protected voidToUnsignedShortScaleByType. convertUnsignedByte(UnsignedByteBuffer in, UnsignedShortBuffer out)protected voidToUnsignedShortNoScaling. convertUnsignedInt(UnsignedIntBuffer in, UnsignedShortBuffer out)protected voidToUnsignedShortScaleByType. convertUnsignedInt(UnsignedIntBuffer in, UnsignedShortBuffer out)protected voidToFloatNoScaling. convertUnsignedShort(UnsignedShortBuffer in, FloatBuffer out)protected voidToUnsignedByteNoScaling. convertUnsignedShort(UnsignedShortBuffer in, UnsignedByteBuffer out)protected voidToUnsignedByteScaleByMaxValue. convertUnsignedShort(UnsignedShortBuffer in, UnsignedByteBuffer out)protected voidToUnsignedByteScaleByMinMaxValue. convertUnsignedShort(UnsignedShortBuffer in, UnsignedByteBuffer out)protected voidToUnsignedByteScaleByType. convertUnsignedShort(UnsignedShortBuffer in, UnsignedByteBuffer out)protected voidToUnsignedInt. convertUnsignedShort(UnsignedShortBuffer in, UnsignedIntBuffer out)protected voidToUnsignedShortNoScaling. convertUnsignedShort(UnsignedShortBuffer in, UnsignedShortBuffer out)protected voidToUnsignedShortScaleByType. convertUnsignedShort(UnsignedShortBuffer in, UnsignedShortBuffer out)protected abstract voidVoxelsConverter. convertUnsignedShort(UnsignedShortBuffer in, T out)Copies a value from the current position in aUnsignedShortBufferto the current position in a buffer of typeT.Method parameters in org.anchoranalysis.image.voxel.convert with type arguments of type UnsignedShortBuffer Modifier and Type Method Description voidVoxelsConverter. copyFromUnsignedShort(Voxels<UnsignedShortBuffer> from, Voxels<T> to)Copies voxels from a source of type @{link UnsignedShortBuffer} to voxels of typeT. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.convert.bufferedimage
Method parameters in org.anchoranalysis.image.voxel.convert.bufferedimage with type arguments of type UnsignedShortBuffer Modifier and Type Method Description static BufferedImageBufferedImageFromVoxels. createGrayscaleShort(Voxels<UnsignedShortBuffer> voxels)Creates aBufferedImagefrom aVoxels<UnsignedShortBuffer>. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.convert.imglib2
Method parameters in org.anchoranalysis.image.voxel.convert.imglib2 with type arguments of type UnsignedShortBuffer Modifier and Type Method Description static net.imglib2.img.Img<net.imglib2.type.numeric.integer.UnsignedShortType>ConvertToImg. fromShort(VoxelBuffer<UnsignedShortBuffer> buffer, Extent extent)Creates anImgfrom aVoxelBufferwith an unsigned short data-type.static net.imglib2.img.Img<net.imglib2.type.numeric.integer.UnsignedShortType>ConvertToImg. fromShort(Voxels<UnsignedShortBuffer> voxels)Creates anImgfromVoxelswith an unsigned short data-type.static net.imglib2.img.NativeImg<net.imglib2.type.numeric.integer.UnsignedShortType,net.imglib2.img.basictypeaccess.array.ShortArray>ConvertToNativeImg. fromShort(Voxels<UnsignedShortBuffer> voxels)Creates anNativeImgfromVoxelswith an unsigned short data-type. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.extracter
Methods in org.anchoranalysis.image.voxel.extracter that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelsExtracter<UnsignedShortBuffer>VoxelsExtracterFactory. createUnsignedShort(Voxels<UnsignedShortBuffer> voxels)Create voxels-extracter forUnsignedShortBuffer.Method parameters in org.anchoranalysis.image.voxel.extracter with type arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelsExtracter<UnsignedShortBuffer>VoxelsExtracterFactory. createUnsignedShort(Voxels<UnsignedShortBuffer> voxels)Create voxels-extracter forUnsignedShortBuffer. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.factory
Methods in org.anchoranalysis.image.voxel.factory that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description static VoxelsFactoryTypeBound<UnsignedShortBuffer>VoxelsFactory. getUnsignedShort()A factory that creates voxels of type unsigned short. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.projection
Methods in org.anchoranalysis.image.voxel.projection that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description 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 UnsignedShortBuffer in org.anchoranalysis.image.voxel.projection.extrema
Methods in org.anchoranalysis.image.voxel.projection.extrema that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description 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. -
Uses of UnsignedShortBuffer in org.anchoranalysis.image.voxel.resizer
Methods in org.anchoranalysis.image.voxel.resizer that return types with arguments of type UnsignedShortBuffer Modifier and Type Method Description protected abstract VoxelBuffer<UnsignedShortBuffer>VoxelsResizer. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)Interpolates fromvoxelsSourcetovoxelsDestinationfor unsigned 16-bit buffers.protected VoxelBuffer<UnsignedShortBuffer>VoxelsResizerExecutionTime. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)VoxelBuffer<UnsignedShortBuffer>VoxelsResizerImgLib2. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)VoxelBuffer<UnsignedShortBuffer>VoxelsResizerNone. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)Method parameters in org.anchoranalysis.image.voxel.resizer with type arguments of type UnsignedShortBuffer Modifier and Type Method Description protected abstract VoxelBuffer<UnsignedShortBuffer>VoxelsResizer. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)Interpolates fromvoxelsSourcetovoxelsDestinationfor unsigned 16-bit buffers.protected VoxelBuffer<UnsignedShortBuffer>VoxelsResizerExecutionTime. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)VoxelBuffer<UnsignedShortBuffer>VoxelsResizerImgLib2. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)VoxelBuffer<UnsignedShortBuffer>VoxelsResizerNone. resizeShort(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)