#[repr(C)]pub enum InterpolationType {
INTERP_GEO = 0,
INTERP_EPIC = 1,
INTERP_RIC = 2,
}
Variants§
INTERP_GEO = 0
< Fast geodesic interpolation, see Geistert2016
INTERP_EPIC = 1
< Edge-preserving interpolation using ximgproc::EdgeAwareInterpolator, see Revaud2015,Geistert2016.
INTERP_RIC = 2
< SLIC based robust interpolation using ximgproc::RICInterpolator, see Hu2017.
Trait Implementations§
Source§impl Clone for InterpolationType
impl Clone for InterpolationType
Source§fn clone(&self) -> InterpolationType
fn clone(&self) -> InterpolationType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InterpolationType
impl Debug for InterpolationType
Source§impl From<InterpolationType> for i32
impl From<InterpolationType> for i32
Source§fn from(v: InterpolationType) -> Self
fn from(v: InterpolationType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterpolationType
impl PartialEq for InterpolationType
Source§impl TryFrom<i32> for InterpolationType
impl TryFrom<i32> for InterpolationType
impl Copy for InterpolationType
impl Eq for InterpolationType
impl StructuralPartialEq for InterpolationType
Auto Trait Implementations§
impl Freeze for InterpolationType
impl RefUnwindSafe for InterpolationType
impl Send for InterpolationType
impl Sync for InterpolationType
impl Unpin for InterpolationType
impl UnwindSafe for InterpolationType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more