Uses of Class
org.anchoranalysis.image.voxel.kernel.BinaryKernel
Packages that use BinaryKernel
Package
Description
Applying a kernel via
convolution to voxels.
Kernels that apply morphological operations.
Kernel to find outline voxels on an object.
-
Uses of BinaryKernel in org.anchoranalysis.image.voxel.kernel
Subclasses of BinaryKernel 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
Executes anotherBinaryKernel
iff a predicate is satisfied for a particular point.Methods in org.anchoranalysis.image.voxel.kernel with parameters of type BinaryKernelModifier and TypeMethodDescriptionstatic BinaryVoxels
<UnsignedByteBuffer> ApplyKernel.apply
(BinaryKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters) Apply the kernel toBinaryVoxels<UnsignedByteBuffer>
using the same binary-values asvoxels
to calculate a value for each voxel.static int
ApplyKernel.applyForCount
(BinaryKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters) Applies aBinaryKernel
to voxels and counts how many true values occur en aggregate.Constructors in org.anchoranalysis.image.voxel.kernel with parameters of type BinaryKernelModifierConstructorDescriptionAndKernel
(BinaryKernel kernel1, BinaryKernel kernel2) Create for the two kernels.ConditionalKernel
(BinaryKernel kernel, Predicate<Point3i> predicate) Creates with a particular delegateBinaryKernel
and a predicate that tests each point. -
Uses of BinaryKernel in org.anchoranalysis.image.voxel.kernel.morphological
Subclasses of BinaryKernel 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.Methods in org.anchoranalysis.image.voxel.kernel.morphological that return BinaryKernelModifier and TypeMethodDescriptionDilationContext.createKernel()
Creates a kernel for performing the dilation. -
Uses of BinaryKernel in org.anchoranalysis.image.voxel.kernel.outline
Subclasses of BinaryKernel 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.