Uses of Class
org.anchoranalysis.image.voxel.resizer.VoxelsResizer
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel |
Data-structures to store and manipulate image raster-data or voxels.
|
| org.anchoranalysis.image.voxel.extracter |
Methods to read/copy/duplicate portions of voxels.
|
| org.anchoranalysis.image.voxel.resizer |
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 VoxelsResizer Modifier and Type Method Description BoundedVoxels<T>BoundedVoxels. 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 VoxelsResizer Modifier and Type Method Description Voxels<T>VoxelsExtracter. 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.resizer Modifier and Type Class Description classLanczosResizes with an interpolator that uses Lanczos resampling as implemented in Imglib2.classLinearResizes with an interpolator that uses linear interpolation as implemented in Imglib2.classNearestNeighborResizes with an interpolator that uses nearest neighbor interpolation as implemented in Imglib2.classVoxelsResizerExecutionTimeCalls anotherVoxelsResizerrecording each resize call via aExecutionTimeRecorder.classVoxelsResizerImgLib2Performs resizing ofVoxelBuffers using ImgLib2's interpolation.classVoxelsResizerNoneDoesn't do any interpolation, just copies a single value for each voxel.Methods in org.anchoranalysis.image.voxel.resizer that return VoxelsResizer Modifier and Type Method Description VoxelsResizerVoxelsResizerFactory. binaryResizer(int outOfBoundsValue)AVoxelsResizerthat is suitable for resizing a binary raster-image, restricted to two possible intensity values only.VoxelsResizerVoxelsResizerFactory. 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 VoxelsResizer Constructor Description VoxelsResizerExecutionTime(VoxelsResizer resizer, ExecutionTimeRecorder executionTimeRecorder, String operationIdentifierPrefix)Creates with anVoxelsResizerandExecutionTimeRecorder.