Uses of Enum
imagingbook.common.image.OutOfBoundsStrategy
Packages that use OutOfBoundsStrategy
Package
Description
-
Uses of OutOfBoundsStrategy in Ch04_Filters
Fields in Ch04_Filters declared as OutOfBoundsStrategyModifier and TypeFieldDescriptionstatic OutOfBoundsStrategy
Jitter_Filter_GenericFilter.OBS
The out-of-bounds strategy to be used (seeOutOfBoundsStrategy
).static OutOfBoundsStrategy
Jitter_Filter_ImageAccessor.OBS
The out-of-bounds strategy to be used (seeOutOfBoundsStrategy
). -
Uses of OutOfBoundsStrategy in imagingbook.common.filter.generic
Methods in imagingbook.common.filter.generic with parameters of type OutOfBoundsStrategyModifier and TypeMethodDescriptionvoid
GenericFilter.applyTo
(ImageProcessor ip, OutOfBoundsStrategy obs) Applies this filter to the givenImageProcessor
, which is modified; the specifiedOutOfBoundsStrategy
is used to handle out-of-bounds coordinates. -
Uses of OutOfBoundsStrategy in imagingbook.common.filter.linear
Fields in imagingbook.common.filter.linear declared as OutOfBoundsStrategy -
Uses of OutOfBoundsStrategy in imagingbook.common.image
Fields in imagingbook.common.image declared as OutOfBoundsStrategyModifier and TypeFieldDescriptionstatic final OutOfBoundsStrategy
GridIndexer2D.DefaultOutOfBoundsStrategy
static OutOfBoundsStrategy
ImageMapper.DefaultOutOfBoundsStrategy
Default out-of-bounds strategy (seeOutOfBoundsStrategy
).static final OutOfBoundsStrategy
PixelPack.DefaultOutOfBoundsStrategy
The default out-of-bounds strategy (seeOutOfBoundsStrategy
).Methods in imagingbook.common.image that return OutOfBoundsStrategyModifier and TypeMethodDescriptionGridIndexer2D.getOutOfBoundsStrategy()
Returns the out-of-bounds strategy (see {qlink OutOfBoundsStrategy} used by this indexer.PixelPack.getOutOfBoundsStrategy()
Returns the out-of-bounds strategy.static OutOfBoundsStrategy
Returns the enum constant of this type with the specified name.static OutOfBoundsStrategy[]
OutOfBoundsStrategy.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in imagingbook.common.image with parameters of type OutOfBoundsStrategyModifier and TypeMethodDescriptionstatic GridIndexer2D
GridIndexer2D.create
(int width, int height, OutOfBoundsStrategy obs) Creates and returns a newGridIndexer2D
with the specified size andOutOfBoundsStrategy
.Constructors in imagingbook.common.image with parameters of type OutOfBoundsStrategyModifierConstructorDescriptionImageMapper
(Mapping2D targetToSourceMapping, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor - creates a newImageMapper
with the specified geometric mapping, out-of-bounds strategy and pixel interpolation method.PixelPack
(int width, int height, int depth, OutOfBoundsStrategy obs) Constructor, creates a blank (zero-valued) pack of pixel data.PixelPack
(ImageProcessor ip, double scale, OutOfBoundsStrategy obs) Constructor, reates a pack of pixel data from the givenImageProcessor
object, using the specified out-of-bounds strategy. -
Uses of OutOfBoundsStrategy in imagingbook.common.image.access
Fields in imagingbook.common.image.access declared as OutOfBoundsStrategyModifier and TypeFieldDescriptionstatic final OutOfBoundsStrategy
ImageAccessor.DefaultOutOfBoundsStrategy
The default out-of-bounds strategy (seeOutOfBoundsStrategy
).protected final OutOfBoundsStrategy
ImageAccessor.outOfBoundsStrategy
Methods in imagingbook.common.image.access that return OutOfBoundsStrategyModifier and TypeMethodDescriptionImageAccessor.getOutOfBoundsStrategy()
Returns theOutOfBoundsStrategy
specified for thisImageAccessor
.Methods in imagingbook.common.image.access with parameters of type OutOfBoundsStrategyModifier and TypeMethodDescriptionstatic FloatAccessor
FloatAccessor.create
(FloatProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) static ImageAccessor
ImageAccessor.create
(ImageProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Creates a newImageAccessor
instance for the given image, using the specified out-of-bounds strategy and interpolation method.static RgbAccessor
RgbAccessor.create
(ColorProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) static ScalarAccessor
ScalarAccessor.create
(ImageProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Creates a new image accessor of general typeScalarAccessor
.static ShortAccessor
ShortAccessor.create
(ShortProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructors in imagingbook.common.image.access with parameters of type OutOfBoundsStrategyModifierConstructorDescriptionByteAccessor
(ByteProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor.FloatAccessor
(FloatProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor.RgbAccessor
(ColorProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor.ShortAccessor
(ShortProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor.