Uses of Class
org.anchoranalysis.image.voxel.resizer.VoxelsResizer
Packages that use VoxelsResizer
Package
Description
Beans for specifying image interpolators.
Beans to specify how to form a single-image by spatially combining other images.
The
Channel
core data-class and related operations
and converters.Inference of machine learning models on images.
Non-beans pertaining to segmentation of images via model inference.
Base classes for generators that ultimately write only a bounding-box portion of a
Stack
to the filesystem.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.
Performing interpolation with ImageJ.
Image interpolation when scaling using ImageJ.
Tasks to scale an image.
Non-bean classes about grouping channels or other inputs.
Non-bean classes pertaining to combining stacks into a single stack.
Interpolation beans that use OpenCV.
Interpolation non-beans that use OpenCV.
-
Uses of VoxelsResizer in org.anchoranalysis.image.bean.interpolator
Methods in org.anchoranalysis.image.bean.interpolator that return VoxelsResizerModifier and TypeMethodDescriptionprotected VoxelsResizer
ImgLib2Lanczos.createVoxelsResizer()
protected VoxelsResizer
ImgLib2Linear.createVoxelsResizer()
protected abstract VoxelsResizer
Interpolator.createVoxelsResizer()
Create aVoxelsResizer
that can be used for resizing voxel-buffers.protected VoxelsResizer
None.createVoxelsResizer()
Interpolator.voxelsResizer()
Memoizes a call toInterpolator.createVoxelsResizer()
. -
Uses of VoxelsResizer in org.anchoranalysis.image.bean.spatial.arrange
Methods in org.anchoranalysis.image.bean.spatial.arrange with parameters of type VoxelsResizerModifier and TypeMethodDescriptionStackArranger.combine
(List<RGBStack> stacks, VoxelsResizer resizer, OperationContext context) StackArranger.combine
(List<RGBStack> stacks, VoxelsResizer resizer, ChannelFactorySingleType factory, OperationContext context) -
Uses of VoxelsResizer in org.anchoranalysis.image.core.channel
Methods in org.anchoranalysis.image.core.channel with parameters of type VoxelsResizerModifier and TypeMethodDescriptionChannel.resizeXY
(int x, int y, VoxelsResizer resizer) LikeChannel.resizeXY(Extent, VoxelsResizer)
but specifies the size viaint
parameters.Channel.resizeXY
(Extent extentToAssign, VoxelsResizer resizer) Resizes the dimensions of the channel, interpolating the existing voxel values to match.Channel.scaleXY
(ScaleFactor scaleFactor, VoxelsResizer resizer) Resizes the dimensions of the channel, by scaling the existing size by a factor. -
Uses of VoxelsResizer in org.anchoranalysis.image.inference
Methods in org.anchoranalysis.image.inference that return VoxelsResizerModifier and TypeMethodDescriptionImageInferenceContext.getResizer()
How to resize images or voxel-buffers.Constructors in org.anchoranalysis.image.inference with parameters of type VoxelsResizerModifierConstructorDescriptionImageInferenceContext
(DualScale<Dimensions> dimensions, ScaleFactor scaleFactor, Optional<List<String>> classLabels, VoxelsResizer resizer, ExecutionTimeRecorder executionTimeRecorder, Logger logger) Creates a newImageInferenceContext
instance. -
Uses of VoxelsResizer in org.anchoranalysis.image.inference.segment
Methods in org.anchoranalysis.image.inference.segment with parameters of type VoxelsResizerModifier and TypeMethodDescriptionstatic BinaryVoxels
<UnsignedByteBuffer> ScaleAndThresholdVoxels.scaleAndThreshold
(Voxels<FloatBuffer> voxels, Extent targetSize, VoxelsResizer resizer, float maskMinValue) Scales voxels representing a mask to a target size, and then thresholds. -
Uses of VoxelsResizer in org.anchoranalysis.image.io.stack.output.box
Methods in org.anchoranalysis.image.io.stack.output.box with parameters of type VoxelsResizerModifier and TypeMethodDescriptionstatic ScaleableBackground
ScaleableBackground.scaleBy
(DisplayStack stack, ScaleFactor scaleFactor, VoxelsResizer resizer) Creates a background from a stack with scaling. -
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 TypeClassDescriptionclass
Resizes with an interpolator that uses Lanczos resampling as implemented in Imglib2.class
Resizes with an interpolator that uses linear interpolation as implemented in Imglib2.class
Resizes with an interpolator that uses nearest neighbor interpolation as implemented in Imglib2.class
Calls anotherVoxelsResizer
recording each resize call via aExecutionTimeRecorder
.class
Performs resizing ofVoxelBuffer
s using ImgLib2's interpolation.class
Doesn'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) AVoxelsResizer
that is suitable for resizing a binary raster-image, restricted to two possible intensity values only.VoxelsResizerFactory.noInterpolation()
AVoxelsResizer
that 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 anVoxelsResizer
andExecutionTimeRecorder
. -
Uses of VoxelsResizer in org.anchoranalysis.io.imagej.bean.interpolator
Methods in org.anchoranalysis.io.imagej.bean.interpolator that return VoxelsResizer -
Uses of VoxelsResizer in org.anchoranalysis.io.imagej.resizer
Subclasses of VoxelsResizer in org.anchoranalysis.io.imagej.resizerModifier and TypeClassDescriptionclass
Resizes with linear interpolation as implemented in ImageJ. -
Uses of VoxelsResizer in org.anchoranalysis.plugin.image.task.bean.scale
Methods in org.anchoranalysis.plugin.image.task.bean.scale with parameters of type VoxelsResizerModifier and TypeMethodDescriptionprotected abstract Stack
ScaleImage.scaleStack
(Stack stack, Optional<ImageSizeSuggestion> suggestedSize, VoxelsResizer voxelsResizer, S sharedState) Produce a scaled version of aStack
, mapping each channel to a scaled version of itself.protected Stack
ScaleImageCommonSize.scaleStack
(Stack stack, Optional<ImageSizeSuggestion> suggestedSize, VoxelsResizer voxelsResizer, CommonSize sharedState) protected Stack
ScaleImageIndependently.scaleStack
(Stack stack, Optional<ImageSizeSuggestion> suggestedSize, VoxelsResizer voxelsResizer, NoSharedState sharedState) -
Uses of VoxelsResizer in org.anchoranalysis.plugin.image.task.grouped
Constructors in org.anchoranalysis.plugin.image.task.grouped with parameters of type VoxelsResizerModifierConstructorDescriptionChannelSource
(NamedStacks stackStore, ConsistentChannelChecker channelChecker, Optional<SizeXY> resizeTo, VoxelsResizer resizer) Creates a newChannelSource
instance. -
Uses of VoxelsResizer in org.anchoranalysis.plugin.image.task.slice
Constructors in org.anchoranalysis.plugin.image.task.slice with parameters of type VoxelsResizerModifierConstructorDescriptionMontageSharedState
(Map<Path, BoundingBoxEnclosed> boxes, Extent sizeCombined, VoxelsResizer resizer, ExecutionTimeRecorder executionTimeRecorder) Create with a mapping fromPath
s to boxes. -
Uses of VoxelsResizer in org.anchoranalysis.plugin.opencv.bean.interpolate
Methods in org.anchoranalysis.plugin.opencv.bean.interpolate that return VoxelsResizer -
Uses of VoxelsResizer in org.anchoranalysis.plugin.opencv.resizer
Subclasses of VoxelsResizer in org.anchoranalysis.plugin.opencv.resizer