| Interface | Description |
|---|---|
| InterpolatePixel<T extends ImageBase> |
Interface for interpolation between pixels on a per-pixel basis.
|
| InterpolatePixelMB<T extends ImageBase> |
Interface for interpolation between pixels on a per-pixel basis for a multi-band image.
|
| InterpolatePixelS<T extends ImageGray> |
Interface for interpolation between pixels on a per-pixel basis for a single band image.
|
| InterpolateRectangle<T extends ImageGray> |
Performs interpolation across a whole rectangular region inside the image.
|
| Class | Description |
|---|---|
| BilinearPixelMB<T extends ImageInterleaved> |
Performs bilinear interpolation to extract values between pixels in an image.
|
| BilinearPixelS<T extends ImageGray> |
Performs bilinear interpolation to extract values between pixels in an image.
|
| ImageLineIntegral |
Computes the line integral of a line segment across the image.
|
| InterpolatePixel_S_to_MB<T extends ImageGray> |
Wrapper that allows a
InterpolatePixelS to be used as a InterpolatePixelMB,
input image has to be ImageGray. |
| NearestNeighborPixelMB<T extends ImageMultiBand> |
Performs nearest neighbor interpolation to extract values between pixels in an image.
|
| NearestNeighborPixelS<T extends ImageGray> |
Performs nearest neighbor interpolation to extract values between pixels in an image.
|
| PolynomialPixel<T extends ImageGray> |
Polynomial interpolation using
Neville's algorithm. |
| Enum | Description |
|---|---|
| TypeInterpolate |
List of built in interpolation algorithms.
|