pub struct LinearScaler { /* private fields */ }
Expand description
Converts image to linear f32 components scales it and convert back.
This is more precise and slower than scaling in linear fixed point.
This is an expensive method, and its precision might not be required, consider to use [LinearApproxScaler] instead
Implementations§
Source§impl LinearScaler
impl LinearScaler
Sourcepub fn new(filter: ResamplingFunction) -> Self
pub fn new(filter: ResamplingFunction) -> Self
Creates new instance with sRGB transfer function
Sourcepub fn new_with_transfer(
filter: ResamplingFunction,
transfer_function: TransferFunction,
) -> Self
pub fn new_with_transfer( filter: ResamplingFunction, transfer_function: TransferFunction, ) -> Self
Creates new instance with requested transfer function
Trait Implementations§
Source§impl Clone for LinearScaler
impl Clone for LinearScaler
Source§fn clone(&self) -> LinearScaler
fn clone(&self) -> LinearScaler
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 LinearScaler
impl Debug for LinearScaler
Source§impl Scaling for LinearScaler
impl Scaling for LinearScaler
Source§fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
fn set_threading_policy(&mut self, threading_policy: ThreadingPolicy)
Sets threading policy Read more
Source§fn resize_plane<'a>(
&'a self,
store: &ImageStore<'a, u8, 1>,
into: &mut ImageStoreMut<'a, u8, 1>,
) -> Result<(), PicScaleError>
fn resize_plane<'a>( &'a self, store: &ImageStore<'a, u8, 1>, into: &mut ImageStoreMut<'a, u8, 1>, ) -> Result<(), PicScaleError>
Performs rescaling for planar image Read more
Source§fn resize_cbcr8<'a>(
&'a self,
store: &ImageStore<'a, u8, 2>,
into: &mut ImageStoreMut<'a, u8, 2>,
) -> Result<(), PicScaleError>
fn resize_cbcr8<'a>( &'a self, store: &ImageStore<'a, u8, 2>, into: &mut ImageStoreMut<'a, u8, 2>, ) -> Result<(), PicScaleError>
Performs rescaling for CbCr8 ( or 2 interleaved channels ) Read more
Source§fn resize_gray_alpha<'a>(
&'a self,
store: &ImageStore<'a, u8, 2>,
into: &mut ImageStoreMut<'a, u8, 2>,
premultiply_alpha: bool,
) -> Result<(), PicScaleError>
fn resize_gray_alpha<'a>( &'a self, store: &ImageStore<'a, u8, 2>, into: &mut ImageStoreMut<'a, u8, 2>, premultiply_alpha: bool, ) -> Result<(), PicScaleError>
Performs rescaling for Gray Alpha ( or 2 interleaved channels with aloha ) Read more
Source§fn resize_rgb<'a>(
&'a self,
store: &ImageStore<'a, u8, 3>,
into: &mut ImageStoreMut<'a, u8, 3>,
) -> Result<(), PicScaleError>
fn resize_rgb<'a>( &'a self, store: &ImageStore<'a, u8, 3>, into: &mut ImageStoreMut<'a, u8, 3>, ) -> Result<(), PicScaleError>
Performs rescaling for RGB, channel order does not matter Read more
Source§fn resize_rgba<'a>(
&'a self,
store: &ImageStore<'a, u8, 4>,
into: &mut ImageStoreMut<'a, u8, 4>,
premultiply_alpha: bool,
) -> Result<(), PicScaleError>
fn resize_rgba<'a>( &'a self, store: &ImageStore<'a, u8, 4>, into: &mut ImageStoreMut<'a, u8, 4>, premultiply_alpha: bool, ) -> Result<(), PicScaleError>
Performs rescaling for RGBA Read more
Source§impl ScalingU16 for LinearScaler
impl ScalingU16 for LinearScaler
Source§fn resize_plane_u16<'a>(
&'a self,
store: &ImageStore<'a, u16, 1>,
into: &mut ImageStoreMut<'a, u16, 1>,
) -> Result<(), PicScaleError>
fn resize_plane_u16<'a>( &'a self, store: &ImageStore<'a, u16, 1>, into: &mut ImageStoreMut<'a, u16, 1>, ) -> Result<(), PicScaleError>
Performs rescaling for Planar u16 Read more
Source§fn resize_cbcr_u16<'a>(
&'a self,
store: &ImageStore<'a, u16, 2>,
into: &mut ImageStoreMut<'a, u16, 2>,
) -> Result<(), PicScaleError>
fn resize_cbcr_u16<'a>( &'a self, store: &ImageStore<'a, u16, 2>, into: &mut ImageStoreMut<'a, u16, 2>, ) -> Result<(), PicScaleError>
Performs rescaling for CbCr16 Read more
Source§fn resize_gray_alpha16<'a>(
&'a self,
store: &ImageStore<'a, u16, 2>,
into: &mut ImageStoreMut<'a, u16, 2>,
premultiply_alpha: bool,
) -> Result<(), PicScaleError>
fn resize_gray_alpha16<'a>( &'a self, store: &ImageStore<'a, u16, 2>, into: &mut ImageStoreMut<'a, u16, 2>, premultiply_alpha: bool, ) -> Result<(), PicScaleError>
Performs rescaling for Gray Alpha high bit-depth ( or 2 interleaved channels with aloha ) Read more
Source§fn resize_rgb_u16<'a>(
&'a self,
store: &ImageStore<'a, u16, 3>,
into: &mut ImageStoreMut<'a, u16, 3>,
) -> Result<(), PicScaleError>
fn resize_rgb_u16<'a>( &'a self, store: &ImageStore<'a, u16, 3>, into: &mut ImageStoreMut<'a, u16, 3>, ) -> Result<(), PicScaleError>
Performs rescaling for RGB Read more
Source§fn resize_rgba_u16<'a>(
&'a self,
store: &ImageStore<'a, u16, 4>,
into: &mut ImageStoreMut<'a, u16, 4>,
premultiply_alpha: bool,
) -> Result<(), PicScaleError>
fn resize_rgba_u16<'a>( &'a self, store: &ImageStore<'a, u16, 4>, into: &mut ImageStoreMut<'a, u16, 4>, premultiply_alpha: bool, ) -> Result<(), PicScaleError>
Performs rescaling for RGBA high bit-depth Read more
impl Copy for LinearScaler
Auto Trait Implementations§
impl Freeze for LinearScaler
impl RefUnwindSafe for LinearScaler
impl Send for LinearScaler
impl Sync for LinearScaler
impl Unpin for LinearScaler
impl UnwindSafe for LinearScaler
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