Enum rustcv::imgproc::InterpolationFlag [] [src]

#[repr(C)]
pub enum InterpolationFlag { Nearst, Linear, Cubic, Area, Lanczos4, LinearExact, Max, WarpFillOutliers, WarpInverseMap, }

Interpolation algorithm

Variants

nearest neighbor interpolation

bilinear interpolation

bicubic interpolation

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.

Lanczos interpolation over 8x8 neighborhood

Bit exact bilinear interpolation

mask for interpolation codes

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

flag, inverse transformation

Trait Implementations

impl Debug for InterpolationFlag
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InterpolationFlag
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for InterpolationFlag
[src]

impl Eq for InterpolationFlag
[src]

impl PartialEq for InterpolationFlag
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Hash for InterpolationFlag
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more