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 TypeClassDescriptionclassCombines twoBinaryKernels so that they only a true value exists only at a point where both kernels return true.classExecutes anotherBinaryKerneliff 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 asvoxelsto calculate a value for each voxel.static intApplyKernel.applyForCount(BinaryKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters) Applies aBinaryKernelto 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 delegateBinaryKerneland 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 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.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 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.