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 voidIterateKernelHelper.overAll(Kernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters, ProcessKernelPointCursor processor) Iterates over all voxels.static voidIterateKernelHelper.overBox(Kernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters, ProcessKernelPointCursor processor) Iterates over only voxels contained within a bounding-box.static booleanIterateKernelHelper.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 TypeClassDescriptionclassCombines twoBinaryKernels so that they only a true value exists only at a point where both kernels return true.classBase class for kernels that return a boolean for every voxel.classExecutes anotherBinaryKerneliff 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 TypeClassDescriptionclassBase class for kernels that return a count (positive integer) for every voxel.classFor every voxel on the outline, count all neighbors that are adjacent.classThe 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 TypeClassDescriptionclassA parent class for anyBinaryKernelthat implements a morphological operation.final classMorphological dilation with a 3x3 or 3x3x3 kernel size.final classErosion 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 TypeClassDescriptionclassSets voxels on the outline of an object to be on and otherwise off.classA base class for kernels that find the outline of anObjectMask.classOutputs the outline of an object-mask, but only for voxels on the exterior which neighbor a binary-mask.