pub enum InterpolateMode {
Nearest,
NearestExact,
Bilinear,
Bicubic,
Lanczos3,
}Expand description
Algorithm used.
Variants§
Nearest
Nearest-neighbor floor interpolation. Matches the legacy behavior of OpenCV’s INTER_NEAREST. It results in a bottom-right shift when resizing. https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation
NearestExact
Nearest-neighbor exact interpolation. https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation
Bilinear
Bilinear interpolation. https://en.wikipedia.org/wiki/Bilinear_interpolation
Bicubic
Bicubic interpolation. https://en.wikipedia.org/wiki/Bicubic_interpolation
Lanczos3
Lanczos3 interpolation (6-tap sinc-based filter). https://en.wikipedia.org/wiki/Lanczos_resampling
Implementations§
Source§impl InterpolateMode
impl InterpolateMode
Sourcepub fn new_nearest() -> InterpolateMode
pub fn new_nearest() -> InterpolateMode
Constructs a new InterpolateMode::Nearest.
Source§impl InterpolateMode
impl InterpolateMode
Sourcepub fn new_nearest_exact() -> InterpolateMode
pub fn new_nearest_exact() -> InterpolateMode
Constructs a new InterpolateMode::NearestExact.
Source§impl InterpolateMode
impl InterpolateMode
Sourcepub fn new_bilinear() -> InterpolateMode
pub fn new_bilinear() -> InterpolateMode
Constructs a new InterpolateMode::Bilinear.
Source§impl InterpolateMode
impl InterpolateMode
Sourcepub fn new_bicubic() -> InterpolateMode
pub fn new_bicubic() -> InterpolateMode
Constructs a new InterpolateMode::Bicubic.
Source§impl InterpolateMode
impl InterpolateMode
Sourcepub fn new_lanczos3() -> InterpolateMode
pub fn new_lanczos3() -> InterpolateMode
Constructs a new InterpolateMode::Lanczos3.
Trait Implementations§
Source§impl Clone for InterpolateMode
impl Clone for InterpolateMode
Source§fn clone(&self) -> InterpolateMode
fn clone(&self) -> InterpolateMode
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for InterpolateMode
impl Debug for InterpolateMode
Source§impl<'de> Deserialize<'de> for InterpolateMode
impl<'de> Deserialize<'de> for InterpolateMode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InterpolateMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InterpolateMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<InterpolateMode> for GridSampleOptions
impl From<InterpolateMode> for GridSampleOptions
Source§fn from(value: InterpolateMode) -> GridSampleOptions
fn from(value: InterpolateMode) -> GridSampleOptions
Source§impl From<InterpolateModeIr> for InterpolateMode
impl From<InterpolateModeIr> for InterpolateMode
Source§fn from(val: InterpolateModeIr) -> InterpolateMode
fn from(val: InterpolateModeIr) -> InterpolateMode
Source§impl Serialize for InterpolateMode
impl Serialize for InterpolateMode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl Freeze for InterpolateMode
impl RefUnwindSafe for InterpolateMode
impl Send for InterpolateMode
impl Sync for InterpolateMode
impl Unpin for InterpolateMode
impl UnsafeUnpin for InterpolateMode
impl UnwindSafe for InterpolateMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more