[][src]Struct libvips::ops::MatchOptions

pub struct MatchOptions {
    pub hwindow: i32,
    pub harea: i32,
    pub search: bool,
    pub interpolate: VipsInterpolate,
}

Options for matches operation

Fields

hwindow: i32

hwindow: i32 -> Half window size min: 0, max: 1000000000, default: 1

harea: i32

harea: i32 -> Half area size min: 0, max: 1000000000, default: 1

search: bool

search: bool -> Search to improve tie-points default: false

interpolate: VipsInterpolate

interpolate: VipsInterpolate -> Interpolate pixels with this

Trait Implementations

impl Clone for MatchOptions[src]

impl Debug for MatchOptions[src]

impl Default for MatchOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.