Uses of Interface
org.anchoranalysis.image.voxel.iterator.process.buffer.ProcessBufferBinary
Packages that use ProcessBufferBinary
Package
Description
Utilities to iterate over voxel-locations in images and sub-regions of images.
Like
org.anchoranalysis.image.voxel.iterator
but refers to iterators that operation over
the intersecting regions of two entities.Functional-interfaces for processing different combinations of points and buffers that return a
boolean.
-
Uses of ProcessBufferBinary in org.anchoranalysis.image.voxel.iterator
Methods in org.anchoranalysis.image.voxel.iterator with parameters of type ProcessBufferBinaryModifier and TypeMethodDescriptionstatic <T> void
IterateVoxelsBoundingBox.withTwoBuffers
(BoundingBox box, ReadableTuple3i shiftForSecond, Voxels<T> voxels1, Voxels<T> voxels2, ProcessBufferBinary<T, T> process) Iterate over each voxel in a bounding-box - with two associated buffers for each slice, oneVoxelBuffer
and oneBuffer
static <S,
T> void IterateVoxelsObjectMask.withTwoBuffers
(ObjectMask object, Voxels<S> voxels1, Voxels<T> voxels2, ProcessBufferBinary<S, T> process) Iterate over each voxel with a corresponding on value in an object-mask - and with two associated buffers for each slice covering the all the global space i.e. the entire image.static <S,
T> void IterateVoxelsObjectMaskOptional.withTwoBuffers
(Optional<ObjectMask> objectMask, Voxels<S> voxels1, Voxels<T> voxels2, ProcessBufferBinary<S, T> process) Iterate over each voxel (or optionally only on object-mask) with two associated buffers.static <S,
T> void IterateVoxelsAll.withTwoBuffersAndPoint
(Voxels<S> voxels1, Voxels<T> voxels2, ProcessBufferBinary<S, T> process) Iterate over each voxel - with two associated buffers for each slice -
Uses of ProcessBufferBinary in org.anchoranalysis.image.voxel.iterator.intersecting
Methods in org.anchoranalysis.image.voxel.iterator.intersecting with parameters of type ProcessBufferBinaryModifier and TypeMethodDescriptionstatic <T> void
IterateVoxelsIntersectingBounded.withTwoBuffers
(BoundedVoxels<T> voxels1, BoundedVoxels<T> voxels2, ProcessBufferBinary<T, T> process) Iterates over the intersection of two bounded-voxels of typeBoundedVoxels
.static void
IterateVoxelsIntersectingBounded.withTwoBuffers
(Voxels<UnsignedByteBuffer> maskGlobal, byte onMaskGlobal, BoundedVoxels<UnsignedByteBuffer> voxels1, BoundedVoxels<UnsignedByteBuffer> voxels2, ProcessBufferBinary<UnsignedByteBuffer, UnsignedByteBuffer> process) Iterates over the intersection of two bounded-voxels of typeBoundedVoxels
but only voxels that lie on an object-mask. -
Uses of ProcessBufferBinary in org.anchoranalysis.image.voxel.iterator.predicate
Methods in org.anchoranalysis.image.voxel.iterator.predicate that return ProcessBufferBinaryModifier and TypeMethodDescriptionPredicateTwoBytes.deriveUnsignedByteProcessor()
Derives a processor with a different interface for operating onUnsignedByteBuffer
.