Uses of Class
org.anchoranalysis.image.voxel.kernel.Kernel
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel.iterator.neighbor.kernel |
Routines for moving a
KernelPointCursor around the
neighboring voxels of the point. |
| org.anchoranalysis.image.voxel.kernel |
Applying a kernel via
convolution to voxels.
|
| org.anchoranalysis.image.voxel.kernel.count |
Kernels to count the number of voxels that are equal to a particular value.
|
| org.anchoranalysis.image.voxel.kernel.morphological |
Kernels that apply morphological operations.
|
| org.anchoranalysis.image.voxel.kernel.outline |
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 Kernel Modifier and Type Method Description static 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.kernel Modifier and Type Class Description classAndKernelCombines twoBinaryKernels so that they only a true value exists only at a point where both kernels return true.classBinaryKernelBase class for kernels that return a boolean for every voxel.classConditionalKernelExecutes 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.count Modifier and Type Class Description classCountKernelBase class for kernels that return a count (positive integer) for every voxel.classCountKernelNeighborhoodFor every voxel on the outline, count all neighbors that are adjacent.classCountKernelNeighborhoodMaskThe 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.morphological Modifier and Type Class Description classBinaryKernelMorphologicalA parent class for anyBinaryKernelthat implements a morphological operation.classDilationKernelMorphological dilation with a 3x3 or 3x3x3 kernel size.classErosionKernelErosion 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.outline Modifier and Type Class Description classOutlineKernelSets voxels on the outline of an object to be on and otherwise off.classOutlineKernelBaseA base class for kernels that find the outline of anObjectMask.classOutlineKernelNeighborMatchValueOutputs the outline of an object-mask, but only for voxels on the exterior which neighbor a binary-mask.