pub enum FilterType {
Nearest,
Triangle,
CatmullRom,
Gaussian,
Lanczos3,
}
Expand description
Available Sampling Filters.
§Examples
To test the different sampling filters on a real example, you can find two
examples called
scaledown
and
scaleup
in the examples
directory of the crate source code.
Here is a 3.58 MiB test image that has been scaled down to 300x225 px:

Nearest Neighbor

Linear: Triangle

Cubic: Catmull-Rom

Gaussian

Lanczos with window 3
§Speed
Time required to create each of the examples above, tested on an Intel i7-4770 CPU with Rust 1.37 in release mode:
Nearest | 31 ms |
---|---|
Triangle | 414 ms |
CatmullRom | 817 ms |
Gaussian | 1180 ms |
Lanczos3 | 1170 ms |
Variants§
Nearest
Nearest Neighbor
Triangle
Linear Filter
CatmullRom
Cubic Filter
Gaussian
Gaussian Filter
Lanczos3
Lanczos with window 3
Trait Implementations§
Source§impl Clone for FilterType
impl Clone for FilterType
Source§fn clone(&self) -> FilterType
fn clone(&self) -> FilterType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FilterType
impl Debug for FilterType
Source§impl Hash for FilterType
impl Hash for FilterType
Source§impl PartialEq for FilterType
impl PartialEq for FilterType
impl Copy for FilterType
impl Eq for FilterType
impl StructuralPartialEq for FilterType
Auto Trait Implementations§
impl Freeze for FilterType
impl RefUnwindSafe for FilterType
impl Send for FilterType
impl Sync for FilterType
impl Unpin for FilterType
impl UnwindSafe for FilterType
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