Uses of Class
org.anchoranalysis.image.voxel.kernel.KernelApplicationParameters
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel.iterator |
Utilities to iterate over voxel-locations in images and sub-regions of images.
|
| 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.morphological |
Kernels that apply morphological operations.
|
-
Uses of KernelApplicationParameters in org.anchoranalysis.image.voxel.iterator
Methods in org.anchoranalysis.image.voxel.iterator with parameters of type KernelApplicationParameters Modifier and Type Method Description static voidIterateVoxelsAll. withCursor(BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters, ProcessKernelPointCursor process)Iterate over each voxel using aKernelPointCursor.static voidIterateVoxelsBoundingBox. withCursor(BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters, ProcessKernelPointCursor process)Iterate over each voxel in a bounding-box using aKernelPointCursor.static booleanIterateVoxelsBoundingBox. withCursorUntil(BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters, PredicateKernelPointCursor predicate)Iterate over each voxel in a bounding-box using aKernelPointCursoruntil a predicate returns true.. -
Uses of KernelApplicationParameters in org.anchoranalysis.image.voxel.iterator.neighbor.kernel
Methods in org.anchoranalysis.image.voxel.iterator.neighbor.kernel with parameters of type KernelApplicationParameters 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 KernelApplicationParameters in org.anchoranalysis.image.voxel.kernel
Methods in org.anchoranalysis.image.voxel.kernel with parameters of type KernelApplicationParameters 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.static intApplyKernel. applyForCount(CountKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, KernelApplicationParameters parameters)Applies the kernel to voxels and sums the returned value.static intApplyKernel. applyForCount(CountKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters)Applies the kernel to voxels and sums the returned value.static booleanApplyKernel. applyUntilPositive(CountKernel kernel, BinaryVoxels<UnsignedByteBuffer> voxels, BoundingBox box, KernelApplicationParameters parameters)Applies the kernel to voxels until a positive value is returned, then exits with true.Constructors in org.anchoranalysis.image.voxel.kernel with parameters of type KernelApplicationParameters Constructor Description KernelPointCursor(int index, Point3i point, Extent extent, BinaryValuesByte binaryValues, KernelApplicationParameters parameters)Creates to be focused around a particular point in the image. -
Uses of KernelApplicationParameters in org.anchoranalysis.image.voxel.kernel.morphological
Methods in org.anchoranalysis.image.voxel.kernel.morphological that return KernelApplicationParameters Modifier and Type Method Description KernelApplicationParametersDilationContext. getKernelApplication()How the kernel is applied to the scene.