Uses of Class
org.apache.sis.image.TransferType
Packages that use TransferType
Package
Description
Provides helper classes for handling Java2D rendered images together with some operations.
-
Uses of TransferType in org.apache.sis.image
Fields in org.apache.sis.image declared as TransferTypeModifier and TypeFieldDescriptionstatic final TransferType<DoubleBuffer>
TransferType.DOUBLE
Specifies that sample values are transferred as double-precision floating point number.static final TransferType<FloatBuffer>
TransferType.FLOAT
Specifies that sample values are transferred as single-precision floating point number.static final TransferType<IntBuffer>
TransferType.INT
Specifies that sample values are transferred as 32 bits signed integer.Methods in org.apache.sis.image that return TransferTypeModifier and TypeMethodDescriptionTransferType<?>
PixelIterator.getTransferType()
Returns the most efficient type (int
,float
ordouble
) for transferring data between the underlying rasters and this iterator.static TransferType<?>
TransferType.valueOf
(int type) Returns the enumeration value for the givenDataBuffer
constant.Methods in org.apache.sis.image with parameters of type TransferTypeModifier and TypeMethodDescription<T extends Buffer>
PixelIterator.Window<T>PixelIterator.createWindow
(TransferType<T> type) Returns a moving window over the sample values in a rectangular region starting at iterator position.