#[repr(C)]
pub enum InterpolationFlags {
    INTER_NEAREST,
    INTER_LINEAR,
    INTER_CUBIC,
    INTER_AREA,
    INTER_LANCZOS4,
    INTER_LINEAR_EXACT,
    INTER_NEAREST_EXACT,
    INTER_MAX,
    WARP_FILL_OUTLIERS,
    WARP_INVERSE_MAP,
}
Expand description

interpolation algorithm

Variants

INTER_NEAREST

nearest neighbor interpolation

INTER_LINEAR

bilinear interpolation

INTER_CUBIC

bicubic interpolation

INTER_AREA

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 INTER_NEAREST method.

INTER_LANCZOS4

Lanczos interpolation over 8x8 neighborhood

INTER_LINEAR_EXACT

Bit exact bilinear interpolation

INTER_NEAREST_EXACT

Bit exact nearest neighbor interpolation. This will produce same results as the nearest neighbor method in PIL, scikit-image or Matlab.

INTER_MAX

mask for interpolation codes

WARP_FILL_OUTLIERS

flag, fills all of the destination image pixels. If some of them correspond to outliers in the source image, they are set to zero

WARP_INVERSE_MAP

flag, inverse transformation

For example, #linearPolar or #logPolar transforms:

  • flag is not set: inline formula
  • flag is set: inline formula

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.