Uses of Class
org.anchoranalysis.image.voxel.kernel.Kernel
Packages that use Kernel
Package
Description
Routines for moving a
KernelPointCursor
around the
neighboring voxels of the point.Applying a kernel via
convolution to voxels.
Kernels to count the number of voxels that are equal to a particular value.
Kernels that apply morphological operations.
Kernel to find outline voxels on an object.
-
Uses of Kernel in org.anchoranalysis.image.voxel.iterator.neighbor.kernel
Methods in org.anchoranalysis.image.voxel.iterator.neighbor.kernel with parameters of type KernelModifier and TypeMethodDescriptionstatic void
IterateKernelHelper.overAll
(Kernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters, ProcessKernelPointCursor processor) Iterates over all voxels.static void
IterateKernelHelper.overBox
(Kernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters, ProcessKernelPointCursor processor) Iterates over only voxels contained within a bounding-box.static boolean
IterateKernelHelper.overBoxUntil
(Kernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters, PredicateKernelPointCursor predicate) Iterates over only voxels contained within a bounding-box until a predicate is matched on a voxel. -
Uses of Kernel in org.anchoranalysis.image.voxel.kernel
Subclasses of Kernel in org.anchoranalysis.image.voxel.kernelModifier and TypeClassDescriptionclass
Combines twoBinaryKernel
s so that they only a true value exists only at a point where both kernels return true.class
Base class for kernels that return a boolean for every voxel.class
Executes anotherBinaryKernel
iff a predicate is satisfied for a particular point. -
Uses of Kernel in org.anchoranalysis.image.voxel.kernel.count
Subclasses of Kernel in org.anchoranalysis.image.voxel.kernel.countModifier and TypeClassDescriptionclass
Base class for kernels that return a count (positive integer) for every voxel.class
For every voxel on the outline, count all neighbors that are adjacent.class
The number of touching-faces of a voxel with a neighbor, so long as the neighbor is part of anObjectMask
. -
Uses of Kernel in org.anchoranalysis.image.voxel.kernel.morphological
Subclasses of Kernel in org.anchoranalysis.image.voxel.kernel.morphologicalModifier and TypeClassDescriptionclass
A parent class for anyBinaryKernel
that implements a morphological operation.final class
Morphological dilation with a 3x3 or 3x3x3 kernel size.final class
Erosion with a 3x3 or 3x3x3 kernel size. -
Uses of Kernel in org.anchoranalysis.image.voxel.kernel.outline
Subclasses of Kernel in org.anchoranalysis.image.voxel.kernel.outlineModifier and TypeClassDescriptionclass
Sets voxels on the outline of an object to be on and otherwise off.class
A base class for kernels that find the outline of anObjectMask
.class
Outputs the outline of an object-mask, but only for voxels on the exterior which neighbor a binary-mask.