Enum arrayfire::InterpType[][src]

#[repr(u32)]
pub enum InterpType { NEAREST, LINEAR, BILINEAR, CUBIC, LOWER, LINEAR_COSINE, BILINEAR_COSINE, BICUBIC, CUBIC_SPLINE, BICUBIC_SPLINE, }

Dictates the interpolation method to be used by a function

Variants

Nearest Neighbor interpolation method

Linear interpolation method

Bilinear interpolation method

Cubic interpolation method

Floor indexed

Linear interpolation with cosine smoothing

Bilinear interpolation with cosine smoothing

Bicubic interpolation

Cubic interpolation with Catmull-Rom splines

Bicubic interpolation with Catmull-Rom splines

Trait Implementations

impl Clone for InterpType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InterpType
[src]

impl Debug for InterpType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for InterpType
[src]

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

This method tests for !=.

impl From<u32> for InterpType
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for InterpType

impl Sync for InterpType