Uses of Enum Class
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 OutOfBoundsStrategyJitter_Filter_GenericFilter.OBSThe out-of-bounds strategy to be used (seeOutOfBoundsStrategy).static OutOfBoundsStrategyJitter_Filter_ImageAccessor.OBSThe 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 TypeMethodDescriptionvoidGenericFilter.applyTo(ImageProcessor ip, OutOfBoundsStrategy obs) Applies this filter to the givenImageProcessor, which is modified; the specifiedOutOfBoundsStrategyis 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 OutOfBoundsStrategyGridIndexer2D.DefaultOutOfBoundsStrategystatic OutOfBoundsStrategyImageMapper.DefaultOutOfBoundsStrategyDefault out-of-bounds strategy (seeOutOfBoundsStrategy).static final OutOfBoundsStrategyPixelPack.DefaultOutOfBoundsStrategyThe 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 OutOfBoundsStrategyReturns the enum constant of this class with the specified name.static OutOfBoundsStrategy[]OutOfBoundsStrategy.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in imagingbook.common.image with parameters of type OutOfBoundsStrategyModifier and TypeMethodDescriptionstatic GridIndexer2DGridIndexer2D.create(int width, int height, OutOfBoundsStrategy obs) Creates and returns a newGridIndexer2Dwith the specified size andOutOfBoundsStrategy.static GridIndexer2DGridIndexer2D.create(ImageProcessor ip, OutOfBoundsStrategy obs) Creates and returns a newGridIndexer2Dfor the specified image andOutOfBoundsStrategy.Constructors in imagingbook.common.image with parameters of type OutOfBoundsStrategyModifierConstructorDescriptionImageMapper(Mapping2D targetToSourceMapping, OutOfBoundsStrategy obs, InterpolationMethod ipm) Constructor - creates a newImageMapperwith 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 givenImageProcessorobject, 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 OutOfBoundsStrategyImageAccessor.DefaultOutOfBoundsStrategyThe default out-of-bounds strategy (seeOutOfBoundsStrategy).protected final OutOfBoundsStrategyImageAccessor.outOfBoundsStrategyMethods in imagingbook.common.image.access that return OutOfBoundsStrategyModifier and TypeMethodDescriptionImageAccessor.getOutOfBoundsStrategy()Returns theOutOfBoundsStrategyspecified for thisImageAccessor.Methods in imagingbook.common.image.access with parameters of type OutOfBoundsStrategyModifier and TypeMethodDescriptionstatic FloatAccessorFloatAccessor.create(FloatProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) static ImageAccessorImageAccessor.create(ImageProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Creates a newImageAccessorinstance for the given image, using the specified out-of-bounds strategy and interpolation method.static RgbAccessorRgbAccessor.create(ColorProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) static ScalarAccessorScalarAccessor.create(ImageProcessor ip, OutOfBoundsStrategy obs, InterpolationMethod ipm) Creates a new image accessor of general typeScalarAccessor.static ShortAccessorShortAccessor.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.