InterpolationFlags

Enum InterpolationFlags 

Source
#[repr(i32)]
pub enum InterpolationFlags { INTER_NEAREST = 0, INTER_LINEAR = 1, INTER_CUBIC = 2, INTER_AREA = 3, INTER_LANCZOS4 = 4, INTER_LINEAR_EXACT = 5, INTER_NEAREST_EXACT = 6, INTER_MAX = 7, WARP_FILL_OUTLIERS = 8, WARP_INVERSE_MAP = 16, WARP_RELATIVE_MAP = 32, }
Expand description

interpolation algorithm

Variants§

§

INTER_NEAREST = 0

nearest neighbor interpolation

§

INTER_LINEAR = 1

bilinear interpolation

§

INTER_CUBIC = 2

bicubic interpolation

§

INTER_AREA = 3

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 = 4

Lanczos interpolation over 8x8 neighborhood

§

INTER_LINEAR_EXACT = 5

Bit exact bilinear interpolation

§

INTER_NEAREST_EXACT = 6

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

§

INTER_MAX = 7

mask for interpolation codes

§

WARP_FILL_OUTLIERS = 8

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 = 16

flag, inverse transformation

For example, linear_polar or log_polar transforms:

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

WARP_RELATIVE_MAP = 32

flag, inverse transformation

For example, linear_polar or log_polar transforms:

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

Trait Implementations§

Source§

impl Clone for InterpolationFlags

Source§

fn clone(&self) -> InterpolationFlags

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for InterpolationFlags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<InterpolationFlags> for i32

Source§

fn from(v: InterpolationFlags) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for InterpolationFlags

Source§

fn eq(&self, other: &InterpolationFlags) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<i32> for InterpolationFlags

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: i32) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for InterpolationFlags

Source§

impl Eq for InterpolationFlags

Source§

impl StructuralPartialEq for InterpolationFlags

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.