Sampler

Type Alias Sampler 

Source
pub type Sampler = FilterType;
Expand description

Algorithm used to downsample images.

Aliased Type§

pub enum Sampler {
    Nearest,
    Triangle,
    CatmullRom,
    Gaussian,
    Lanczos3,
}

Variants§

§

Nearest

Nearest Neighbor

§

Triangle

Linear Filter

§

CatmullRom

Cubic Filter

§

Gaussian

Gaussian Filter

§

Lanczos3

Lanczos with window 3