[][src]Struct libvips::ops::MosaicOptions

pub struct MosaicOptions {
    pub hwindow: i32,
    pub harea: i32,
    pub mblend: i32,
    pub bandno: i32,
    pub dx_0: i32,
    pub dy_0: i32,
    pub scale_1: f64,
    pub angle_1: f64,
    pub dy_1: f64,
    pub dx_1: f64,
}

Options for mosaic operation

Fields

hwindow: i32

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

harea: i32

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

mblend: i32

mblend: i32 -> Maximum blend size min: 0, max: 10000, default: 10

bandno: i32

bandno: i32 -> Band to search for features on min: 0, max: 10000, default: 0

dx_0: i32

dx_0: i32 -> Detected integer offset min: -10000000, max: 10000000, default: 0

dy_0: i32

dy_0: i32 -> Detected integer offset min: -10000000, max: 10000000, default: 0

scale_1: f64

scale_1: f64 -> Detected scale min: -10000000, max: 10000000, default: 1

angle_1: f64

angle_1: f64 -> Detected rotation min: -10000000, max: 10000000, default: 0

dy_1: f64

dy_1: f64 -> Detected first-order displacement min: -10000000, max: 10000000, default: 0

dx_1: f64

dx_1: f64 -> Detected first-order displacement min: -10000000, max: 10000000, default: 0

Trait Implementations

impl Clone for MosaicOptions[src]

impl Debug for MosaicOptions[src]

impl Default for MosaicOptions[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.