Uses of Class
org.anchoranalysis.image.voxel.buffer.VoxelBuffer
Packages that use VoxelBuffer
Package
Description
Data-structures to store and manipulate image raster-data or voxels.
The
BinaryVoxels
class and related operations.A buffer of voxel-values, usually corresponding to a single z-slice in
Voxels
.A container with voxel-buffers for each z-slice.
Converts anchor data-structures to those used by ImgLib2.
Creates new instances of
Voxels
and VoxelsUntyped
with specific data-types.Utilities to iterate over voxel-locations in images and sub-regions of images.
Functional-interfaces for processing different combinations of points and raw buffers, but not
VoxelBuffer
.Functional-interfaces for processing different combinations of points and
VoxelBuffer
but not raw buffers.Classes for calculating differnet kind of projections of voxel values across multiple buffers.
Different interpolator methods to use when scaling voxels.
Statistics about aggregated voxel intensities.
Converts the byte stream opened by Bioformats into channels of particular data-type.
Converts to and from ImageJ data-structures for images.
Image interpolation when scaling using ImageJ.
Non-beans pertaining to segmenting a z-stack slice-by-slice.
Conversion to/from OpenCV data-structures.
Interpolation non-beans that use OpenCV.
-
Uses of VoxelBuffer in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return VoxelBufferModifier and TypeMethodDescriptionVoxels.slice
(int z) AVoxelBuffer
corresponding to a particular z-slice.<T> VoxelBuffer
<T> VoxelsUntyped.slice
(int z) AVoxelBuffer
corresponding to a particular z-slice.Methods in org.anchoranalysis.image.voxel with parameters of type VoxelBufferModifier and TypeMethodDescriptionvoid
BoundedVoxels.replaceSlice
(int sliceIndexToUpdate, VoxelBuffer<T> bufferToAssign) Assigns a new buffer for a slice.void
Voxels.replaceSlice
(int sliceIndexToUpdate, VoxelBuffer<T> bufferToAssign) Assigns a new buffer for a particular slice. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.binary
Methods in org.anchoranalysis.image.voxel.binary that return VoxelBufferModifier and TypeMethodDescriptionBinaryVoxels.slice
(int z) AVoxelBuffer
corresponding to a particular z-slice. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.buffer
Subclasses of VoxelBuffer in org.anchoranalysis.image.voxel.bufferModifier and TypeClassDescriptionclass
VoxelBufferUnsigned<T extends UnsignedBuffer>
A parent class forVoxelBuffer
that accepts unsigned-buffers and implements some common operations.Methods in org.anchoranalysis.image.voxel.buffer that return VoxelBufferModifier and TypeMethodDescriptionstatic VoxelBuffer<FloatBuffer>[]
VoxelBufferFactory.allocateFloatArray
(int size) Creates an array of float voxel-buffers of given size.static VoxelBuffer
<UnsignedByteBuffer> VoxelBufferFactory.allocateUnsignedByte
(int capacity) Allocates a new unsigned byte voxel-buffer of given size.static VoxelBuffer<UnsignedByteBuffer>[]
VoxelBufferFactory.allocateUnsignedByteArray
(int size) Creates an array of unsigned byte voxel-buffers of given size.static VoxelBuffer<UnsignedIntBuffer>[]
VoxelBufferFactory.allocateUnsignedIntArray
(int size) Creates an array of unsigned int voxel-buffers of given size.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.SlidingBuffer.bufferRelative
(int relativeIndex) Returns the corresponding buffer at a relative z-slice index to the current focused z-slice.abstract VoxelBuffer
<T> VoxelBuffer.duplicate()
Creates a deep copy of the current object, including deep-copying the associated buffer.static VoxelBuffer
<FloatBuffer> VoxelBufferWrap.floatArray
(float[] array) Wraps an float-array into a voxel-buffer.static VoxelBuffer
<FloatBuffer> VoxelBufferWrap.floatBuffer
(FloatBuffer buffer) Wraps a float buffer into a voxel-buffer.SlidingBuffer.getCenter()
The buffer for the currently selected slice.SlidingBuffer.getMinusOne()
The voxel-buffer for the slice with the currently selected slice's index-1
or null if it's the first slice.SlidingBuffer.getPlusOne()
The voxel-buffer for the slice with the currently selected slice's index+1
or null if it's the final slice.static VoxelBuffer
<UnsignedByteBuffer> VoxelBufferWrap.unsignedByteArray
(byte[] array) Wraps an existing array (encoding unsigned bytes as a signed array) as a voxel-buffer.static VoxelBuffer
<UnsignedByteBuffer> VoxelBufferWrap.unsignedByteBuffer
(UnsignedByteBuffer buffer) Wraps an unsigned-byte buffer into a voxel-buffer.static VoxelBuffer
<UnsignedByteBuffer> VoxelBufferWrap.unsignedByteRaw
(ByteBuffer buffer) Wraps an unsigned-byte buffer (represented by a NIO signed-buffer) into a voxel-buffer.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.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 VoxelBufferModifier and TypeMethodDescriptionvoid
ProjectableBuffer.addVoxelBuffer
(VoxelBuffer<T> voxels) Adds aVoxelBuffer
to the projection, as a single entity.abstract void
VoxelBuffer.copyVoxelFrom
(int destinationIndex, VoxelBuffer<T> source, int sourceIndex) Copies one particular intensity-value from anotherVoxelBuffer
into this buffer. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.buffer.slice
Methods in org.anchoranalysis.image.voxel.buffer.slice that return VoxelBufferModifier and TypeMethodDescriptionFromByte.slice
(int z) FromFloat.slice
(int z) FromInt.slice
(int z) FromShort.slice
(int z) SliceBufferIndex.slice
(int z) AVoxelBuffer
corresponding to a particular z-slice.Methods in org.anchoranalysis.image.voxel.buffer.slice with parameters of type VoxelBufferModifier and TypeMethodDescriptionvoid
FromByte.replaceSlice
(int z, VoxelBuffer<UnsignedByteBuffer> sliceToAssign) void
FromFloat.replaceSlice
(int z, VoxelBuffer<FloatBuffer> sliceToAssign) void
FromInt.replaceSlice
(int z, VoxelBuffer<UnsignedIntBuffer> sliceToAssign) void
FromShort.replaceSlice
(int z, VoxelBuffer<UnsignedShortBuffer> sliceToAssign) void
SliceBufferIndex.replaceSlice
(int z, VoxelBuffer<T> sliceToAssign) Replaces the voxels for a particular z-slice.Method parameters in org.anchoranalysis.image.voxel.buffer.slice with type arguments of type VoxelBufferModifier and TypeMethodDescriptiondefault void
SliceBufferIndex.iterateOverSlices
(Consumer<VoxelBuffer<T>> sliceConsumer) CallssliceConsumer
once for each slice with the respective buffer. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.convert.imglib2
Methods in org.anchoranalysis.image.voxel.convert.imglib2 with parameters of type VoxelBufferModifier and TypeMethodDescriptionstatic net.imglib2.img.Img
<net.imglib2.type.numeric.integer.UnsignedByteType> ConvertToImg.fromByte
(VoxelBuffer<UnsignedByteBuffer> buffer, Extent extent) Creates anImg
from aVoxelBuffer
with an unsigned byte data-type.static net.imglib2.img.Img
<net.imglib2.type.numeric.real.FloatType> ConvertToImg.fromFloat
(VoxelBuffer<FloatBuffer> buffer, Extent extent) Creates anImg
from aVoxelBuffer
with a float data-type.static net.imglib2.img.Img
<net.imglib2.type.numeric.integer.UnsignedShortType> ConvertToImg.fromShort
(VoxelBuffer<UnsignedShortBuffer> buffer, Extent extent) Creates anImg
from aVoxelBuffer
with an unsigned short data-type. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.factory
Methods in org.anchoranalysis.image.voxel.factory with parameters of type VoxelBufferModifier and TypeMethodDescriptionVoxelsFactoryTypeBound.createForVoxelBuffer
(VoxelBuffer<T> buffer, Extent extent) Create a newVoxels
that has been initialized with a single-slice's memory buffers. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.iterator
Methods in org.anchoranalysis.image.voxel.iterator with parameters of type VoxelBufferModifier and TypeMethodDescriptionstatic <S,
T> void IterateVoxelsRemaining.withTwoBuffersWithoutOffset
(VoxelBuffer<S> voxelBuffer1, VoxelBuffer<T> voxelBuffer2, ProcessBufferBinaryWithoutOffset<S, T> process) Iterate over remaining voxels each voxel - with two associated buffers for each slice. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.iterator.process.buffer
Methods in org.anchoranalysis.image.voxel.iterator.process.buffer with parameters of type VoxelBufferModifier and TypeMethodDescriptionvoid
ProcessBufferBinaryMixed.process
(Point3i point, VoxelBuffer<S> buffer1, T buffer2, int offset1, int offset2) Processes a voxel location in two buffers. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.iterator.process.voxelbuffer
Methods in org.anchoranalysis.image.voxel.iterator.process.voxelbuffer with parameters of type VoxelBufferModifier and TypeMethodDescriptionvoid
ProcessVoxelBufferBinary.process
(VoxelBuffer<S> buffer1, VoxelBuffer<T> buffer2, int offset) Processes a voxel location in a buffervoid
ProcessVoxelBufferBinaryMixed.process
(Point3i point, VoxelBuffer<S> buffer1, T buffer2, int offset) Processes a voxel location in a buffervoid
ProcessVoxelBufferBinaryWithoutOffset.process
(VoxelBuffer<S> buffer1, VoxelBuffer<T> buffer2) Processes a voxel location in a buffervoid
ProcessVoxelBufferUnary.process
(VoxelBuffer<T> buffer, int offset) Processes a voxel location in a buffer.void
ProcessVoxelBufferUnaryWithPoint.process
(Point3i point, VoxelBuffer<T> buffer, int offset) Processes a voxel location in a buffer. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.projection
Methods in org.anchoranalysis.image.voxel.projection with parameters of type VoxelBufferModifier and TypeMethodDescriptionvoid
CountedProjectableBuffer.addVoxelBuffer
(VoxelBuffer<T> voxelBuffer) protected abstract void
CountedProjectableBuffer.addVoxelBufferInternal
(VoxelBuffer<T> voxelBuffer, int z) Adds aVoxelBuffer
without incrementing the count. -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.resizer
Methods in org.anchoranalysis.image.voxel.resizer that return VoxelBufferModifier and TypeMethodDescriptionprotected abstract VoxelBuffer
<UnsignedByteBuffer> VoxelsResizer.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for unsigned 8-bit buffers.protected VoxelBuffer
<UnsignedByteBuffer> VoxelsResizerExecutionTime.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected abstract VoxelBuffer
<FloatBuffer> VoxelsResizer.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for float buffers.protected VoxelBuffer
<FloatBuffer> VoxelsResizerExecutionTime.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected abstract VoxelBuffer
<UnsignedShortBuffer> VoxelsResizer.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for unsigned 16-bit buffers.protected VoxelBuffer
<UnsignedShortBuffer> VoxelsResizerExecutionTime.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Methods in org.anchoranalysis.image.voxel.resizer with parameters of type VoxelBufferModifier and TypeMethodDescriptionprotected abstract VoxelBuffer
<UnsignedByteBuffer> VoxelsResizer.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for unsigned 8-bit buffers.protected VoxelBuffer
<UnsignedByteBuffer> VoxelsResizerExecutionTime.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected abstract VoxelBuffer
<FloatBuffer> VoxelsResizer.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for float buffers.protected VoxelBuffer
<FloatBuffer> VoxelsResizerExecutionTime.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected abstract VoxelBuffer
<UnsignedShortBuffer> VoxelsResizer.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Interpolates fromvoxelsSource
tovoxelsDestination
for unsigned 16-bit buffers.protected VoxelBuffer
<UnsignedShortBuffer> VoxelsResizerExecutionTime.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImgLib2.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerNone.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) -
Uses of VoxelBuffer in org.anchoranalysis.image.voxel.statistics
Methods in org.anchoranalysis.image.voxel.statistics with parameters of type VoxelBufferModifier and TypeMethodDescriptionstatic Histogram
HistogramFactory.createFrom
(VoxelBuffer<?> buffer) Creates aHistogram
of the aggregated voxel intensities in aVoxelBuffer
. -
Uses of VoxelBuffer in org.anchoranalysis.io.bioformats.copyconvert
Methods in org.anchoranalysis.io.bioformats.copyconvert that return VoxelBufferModifier and TypeMethodDescriptionprotected VoxelBuffer
<T> ConvertTo.convertSliceOfSingleChannel
(ByteBuffer source, int channelIndexRelative, OrientationChange orientationCorrection) Converts a slice of single-channel into a newly createdVoxelBuffer
. -
Uses of VoxelBuffer in org.anchoranalysis.io.imagej.convert
Methods in org.anchoranalysis.io.imagej.convert that return VoxelBufferModifier and TypeMethodDescriptionstatic VoxelBuffer
<UnsignedByteBuffer> ConvertToVoxelBuffer.asByte
(ij.process.ImageProcessor processor) Convert aImageProcessor
toVoxelBuffer<UnsignedByteBuffer>
static VoxelBuffer
<FloatBuffer> ConvertToVoxelBuffer.asFloat
(ij.process.ImageProcessor processor) Convert aImageProcessor
toVoxelBuffer<FloatBuffer>
static VoxelBuffer
<UnsignedShortBuffer> ConvertToVoxelBuffer.asShort
(ij.process.ImageProcessor processor) Convert aImageProcessor
toVoxelBuffer<UnsignedShortBuffer>
Methods in org.anchoranalysis.io.imagej.convert with parameters of type VoxelBufferModifier and TypeMethodDescriptionstatic ij.process.ImageProcessor
ConvertToImageProcessor.fromByte
(VoxelBuffer<UnsignedByteBuffer> slice, Extent extent) Creates aImageProcessor
from voxel-buffer (of typeByteBuffer
) that is already a slice.static ij.process.ImageProcessor
ConvertToImageProcessor.fromFloat
(VoxelBuffer<FloatBuffer> slice, Extent extent) Creates aImageProcessor
from voxel-buffer (of typeFloatBuffer
) that is already a slice.static ij.process.ImageProcessor
ConvertToImageProcessor.fromShort
(VoxelBuffer<UnsignedShortBuffer> slice, Extent extent) Creates aImageProcessor
from voxel-buffer (of typeShortBuffer
) that is already a slice. -
Uses of VoxelBuffer in org.anchoranalysis.io.imagej.resizer
Methods in org.anchoranalysis.io.imagej.resizer that return VoxelBufferModifier and TypeMethodDescriptionVoxelsResizerImageJ.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImageJ.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImageJ.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Methods in org.anchoranalysis.io.imagej.resizer with parameters of type VoxelBufferModifier and TypeMethodDescriptionVoxelsResizerImageJ.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImageJ.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) VoxelsResizerImageJ.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) -
Uses of VoxelBuffer in org.anchoranalysis.plugin.image.segment.thresholder.slice
Methods in org.anchoranalysis.plugin.image.segment.thresholder.slice with parameters of type VoxelBufferModifier and TypeMethodDescriptionprotected final void
SliceThresholder.writeThresholdedByte
(int offset, UnsignedByteBuffer bufferOut, VoxelBuffer<?> bufferIn, VoxelBuffer<?> bufferThreshold) Writes a thresholded value to the output buffer based on the input and threshold buffers. -
Uses of VoxelBuffer in org.anchoranalysis.plugin.opencv.convert
Methods in org.anchoranalysis.plugin.opencv.convert that return VoxelBufferModifier and TypeMethodDescriptionstatic VoxelBuffer
<FloatBuffer> VoxelBufferFromMat.floatFromMat
(org.opencv.core.Mat mat, Extent extent) static VoxelBuffer
<?> VoxelBufferFromMat.toVoxelBuffer
(org.opencv.core.Mat mat, Extent extent) Converts aMat
to aVoxelBuffer
.static VoxelBuffer
<UnsignedByteBuffer> VoxelBufferFromMat.unsignedByteFromMat
(org.opencv.core.Mat mat, Extent extent) static VoxelBuffer
<UnsignedShortBuffer> VoxelBufferFromMat.unsignedShortFromMat
(org.opencv.core.Mat mat, Extent extent) Methods in org.anchoranalysis.plugin.opencv.convert with parameters of type VoxelBufferModifier and TypeMethodDescriptionstatic org.opencv.core.Mat
ConvertToMat.fromVoxelBufferByte
(VoxelBuffer<UnsignedByteBuffer> voxelBuffer, Extent extent) static org.opencv.core.Mat
ConvertToMat.fromVoxelBufferFloat
(VoxelBuffer<FloatBuffer> voxelBuffer, Extent extent) static org.opencv.core.Mat
ConvertToMat.fromVoxelBufferShort
(VoxelBuffer<UnsignedShortBuffer> voxelBuffer, Extent extent) -
Uses of VoxelBuffer in org.anchoranalysis.plugin.opencv.resizer
Methods in org.anchoranalysis.plugin.opencv.resizer that return VoxelBufferModifier and TypeMethodDescriptionprotected VoxelBuffer
<UnsignedByteBuffer> VoxelsResizerOpenCV.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected VoxelBuffer
<FloatBuffer> VoxelsResizerOpenCV.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected VoxelBuffer
<UnsignedShortBuffer> VoxelsResizerOpenCV.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) Methods in org.anchoranalysis.plugin.opencv.resizer with parameters of type VoxelBufferModifier and TypeMethodDescriptionprotected VoxelBuffer
<UnsignedByteBuffer> VoxelsResizerOpenCV.resizeByte
(VoxelBuffer<UnsignedByteBuffer> voxelsSource, VoxelBuffer<UnsignedByteBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected VoxelBuffer
<FloatBuffer> VoxelsResizerOpenCV.resizeFloat
(VoxelBuffer<FloatBuffer> voxelsSource, VoxelBuffer<FloatBuffer> voxelsDestination, Extent extentSource, Extent extentDestination) protected VoxelBuffer
<UnsignedShortBuffer> VoxelsResizerOpenCV.resizeShort
(VoxelBuffer<UnsignedShortBuffer> voxelsSource, VoxelBuffer<UnsignedShortBuffer> voxelsDestination, Extent extentSource, Extent extentDestination)