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§
Auto 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