Enum arrayfire::InterpType
[−]
[src]
#[repr(C)]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
NEARESTNearest Neighbor interpolation method
LINEARLinear interpolation method
BILINEARBilinear interpolation method
CUBICCubic interpolation method
LOWERFloor indexed
LINEAR_COSINELinear interpolation with cosine smoothing
BILINEAR_COSINEBilinear interpolation with cosine smoothing
BICUBICBicubic interpolation
CUBIC_SPLINECubic interpolation with Catmull-Rom splines
BICUBIC_SPLINEBicubic interpolation with Catmull-Rom splines
Trait Implementations
impl Clone for InterpType[src]
fn clone(&self) -> InterpType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for InterpType[src]
impl Debug for InterpType[src]
impl PartialEq for InterpType[src]
fn eq(&self, __arg_0: &InterpType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl From<i32> for InterpType[src]
fn from(t: i32) -> InterpType
Performs the conversion.