Uses of Class
org.anchoranalysis.image.voxel.kernel.BinaryKernel
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel.kernel |
Applying a kernel via
convolution to voxels.
|
| 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 BinaryKernel in org.anchoranalysis.image.voxel.kernel
Subclasses of BinaryKernel 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.classConditionalKernelExecutes anotherBinaryKerneliff a predicate is satisfied for a particular point.Methods in org.anchoranalysis.image.voxel.kernel with parameters of type BinaryKernel Modifier and Type Method Description static 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 BinaryKernel Constructor Description AndKernel(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.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.Methods in org.anchoranalysis.image.voxel.kernel.morphological that return BinaryKernel Modifier and Type Method Description BinaryKernelDilationContext. 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.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.