pub struct LinearApproxScaler { /* private fields */ }Expand description
Linearize image into u16, scale and then convert it back. It’s much faster than scale in f32, however involves small precision loss
Implementations§
Source§impl LinearApproxScaler
impl LinearApproxScaler
Sourcepub fn new(filter: ResamplingFunction) -> Self
Available on crate feature colorspaces only.
pub fn new(filter: ResamplingFunction) -> Self
colorspaces only.Creates new instance with sRGB transfer function
Sourcepub fn new_with_transfer(
filter: ResamplingFunction,
transfer_function: TransferFunction,
) -> Self
Available on crate feature colorspaces only.
pub fn new_with_transfer( filter: ResamplingFunction, transfer_function: TransferFunction, ) -> Self
colorspaces only.Creates new instance with provided transfer function
Source§impl LinearApproxScaler
impl LinearApproxScaler
pub fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
Available on crate feature
colorspaces only.pub fn plan_planar_resampling( &self, source_size: ImageSize, target_size: ImageSize, ) -> Result<Arc<Resampling<u8, 1>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_cbcr_resampling( &self, source_size: ImageSize, target_size: ImageSize, ) -> Result<Arc<Resampling<u8, 2>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_gray_alpha_resampling( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, ) -> Result<Arc<Resampling<u8, 2>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_rgb_resampling( &self, source_size: ImageSize, target_size: ImageSize, ) -> Result<Arc<Resampling<u8, 3>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_rgba_resampling( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, ) -> Result<Arc<Resampling<u8, 4>>, PicScaleError>
Available on crate feature
colorspaces only.Source§impl LinearApproxScaler
impl LinearApproxScaler
pub fn plan_planar_resampling16( &self, source_size: ImageSize, target_size: ImageSize, bit_depth: usize, ) -> Result<Arc<Resampling<u16, 1>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_gray_alpha_resampling16( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, bit_depth: usize, ) -> Result<Arc<Resampling<u16, 2>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_cbcr_resampling16( &self, source_size: ImageSize, target_size: ImageSize, bit_depth: usize, ) -> Result<Arc<Resampling<u16, 2>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_rgb_resampling16( &self, source_size: ImageSize, target_size: ImageSize, bit_depth: usize, ) -> Result<Arc<Resampling<u16, 3>>, PicScaleError>
Available on crate feature
colorspaces only.pub fn plan_rgba_resampling16( &self, source_size: ImageSize, target_size: ImageSize, premultiply_alpha: bool, bit_depth: usize, ) -> Result<Arc<Resampling<u16, 4>>, PicScaleError>
Available on crate feature
colorspaces only.Trait Implementations§
Source§impl Clone for LinearApproxScaler
Available on crate feature colorspaces only.
impl Clone for LinearApproxScaler
Available on crate feature
colorspaces only.Source§fn clone(&self) -> LinearApproxScaler
fn clone(&self) -> LinearApproxScaler
Returns a duplicate 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 LinearApproxScaler
Available on crate feature colorspaces only.
impl Debug for LinearApproxScaler
Available on crate feature
colorspaces only.impl Copy for LinearApproxScaler
Available on crate feature
colorspaces only.Auto Trait Implementations§
impl Freeze for LinearApproxScaler
impl RefUnwindSafe for LinearApproxScaler
impl Send for LinearApproxScaler
impl Sync for LinearApproxScaler
impl Unpin for LinearApproxScaler
impl UnsafeUnpin for LinearApproxScaler
impl UnwindSafe for LinearApproxScaler
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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