Uses of Class
org.anchoranalysis.image.voxel.resizer.VoxelsResizer
Packages that use VoxelsResizer
Package
Description
Data-structures to store and manipulate image raster-data or voxels.
Methods to read/copy/duplicate portions of voxels.
Different interpolator methods to use when scaling voxels.
-
Uses of VoxelsResizer in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel with parameters of type VoxelsResizerModifier and TypeMethodDescriptionBoundedVoxels.scale(ScaleFactor scaleFactor, VoxelsResizer resizer, Optional<Extent> clipTo) Creates a scaled-version (in XY dimensions only) of the current bounding-box. -
Uses of VoxelsResizer in org.anchoranalysis.image.voxel.extracter
Methods in org.anchoranalysis.image.voxel.extracter with parameters of type VoxelsResizerModifier and TypeMethodDescriptionVoxelsExtracter.resizedXY(int sizeX, int sizeY, VoxelsResizer resizer) Creates a new voxels that are a resized version of the current voxels (only in X and Y dimensions), interpolating as needed. -
Uses of VoxelsResizer in org.anchoranalysis.image.voxel.resizer
Subclasses of VoxelsResizer in org.anchoranalysis.image.voxel.resizerModifier and TypeClassDescriptionclassResizes with an interpolator that uses Lanczos resampling as implemented in Imglib2.classResizes with an interpolator that uses linear interpolation as implemented in Imglib2.classResizes with an interpolator that uses nearest neighbor interpolation as implemented in Imglib2.classCalls anotherVoxelsResizerrecording each resize call via aExecutionTimeRecorder.classPerforms resizing ofVoxelBuffers using ImgLib2's interpolation.classDoesn't do any interpolation, just copies a single value for each voxel.Methods in org.anchoranalysis.image.voxel.resizer that return VoxelsResizerModifier and TypeMethodDescriptionVoxelsResizerFactory.binaryResizer(int outOfBoundsValue) AVoxelsResizerthat is suitable for resizing a binary raster-image, restricted to two possible intensity values only.VoxelsResizerFactory.noInterpolation()AVoxelsResizerthat is effectively disabled, and performs no interpolation, copying a single (minimal corner) value for each voxel.Constructors in org.anchoranalysis.image.voxel.resizer with parameters of type VoxelsResizerModifierConstructorDescriptionVoxelsResizerExecutionTime(VoxelsResizer resizer, ExecutionTimeRecorder executionTimeRecorder, String operationIdentifierPrefix) Creates with anVoxelsResizerandExecutionTimeRecorder.