Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
data InterpolationMethod Source #
InterNearest | Nearest neighbor interpolation. |
InterLinear | Bilinear interpolation. |
InterCubic | Bicubic interpolation. |
InterArea | Resampling using pixel area relation. It may be a preferred method for
image decimation, as it gives moire'-free results. But when the image is
zoomed, it is similar to the |
InterLanczos4 | Lanczos interpolation over 8x8 neighborhood |
data BorderMode Source #
BorderConstant Scalar | 1D example: |
BorderReplicate | 1D example: |
BorderReflect | 1D example: |
BorderWrap | 1D example: |
BorderReflect101 | 1D example: |
BorderTransparent | 1D example: |
BorderIsolated | do not look outside of ROI |