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 VoxelsResizerImgLib2Lanczos.createVoxelsResizer()protected VoxelsResizerImgLib2Linear.createVoxelsResizer()protected abstract VoxelsResizerInterpolator.createVoxelsResizer()Create aVoxelsResizerthat can be used for resizing voxel-buffers.protected VoxelsResizerNone.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 viaintparameters.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 newImageInferenceContextinstance. -
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 ScaleableBackgroundScaleableBackground.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 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. -
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 TypeClassDescriptionclassResizes 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 StackScaleImage.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 StackScaleImageCommonSize.scaleStack(Stack stack, Optional<ImageSizeSuggestion> suggestedSize, VoxelsResizer voxelsResizer, CommonSize sharedState) protected StackScaleImageIndependently.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 newChannelSourceinstance. -
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 fromPaths 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