pub struct J2kForwardDwt53Level {
pub hl: Vec<f32>,
pub lh: Vec<f32>,
pub hh: Vec<f32>,
pub width: u32,
pub height: u32,
pub low_width: u32,
pub low_height: u32,
pub high_width: u32,
pub high_height: u32,
}Expand description
Adapter forward 5/3 DWT detail level for backend experimentation.
Fields§
§hl: Vec<f32>HL subband coefficients.
lh: Vec<f32>LH subband coefficients.
hh: Vec<f32>HH subband coefficients.
width: u32Full-resolution width represented by this level.
height: u32Full-resolution height represented by this level.
low_width: u32Low-pass width at this level.
low_height: u32Low-pass height at this level.
high_width: u32High-pass width at this level.
high_height: u32High-pass height at this level.
Trait Implementations§
Source§impl Clone for J2kForwardDwt53Level
impl Clone for J2kForwardDwt53Level
Source§fn clone(&self) -> J2kForwardDwt53Level
fn clone(&self) -> J2kForwardDwt53Level
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for J2kForwardDwt53Level
impl RefUnwindSafe for J2kForwardDwt53Level
impl Send for J2kForwardDwt53Level
impl Sync for J2kForwardDwt53Level
impl Unpin for J2kForwardDwt53Level
impl UnsafeUnpin for J2kForwardDwt53Level
impl UnwindSafe for J2kForwardDwt53Level
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