pub struct Dwt97TwoDimensional<T> {
pub ll: Vec<T>,
pub hl: Vec<T>,
pub lh: Vec<T>,
pub hh: Vec<T>,
pub low_width: usize,
pub low_height: usize,
pub high_width: usize,
pub high_height: usize,
}Expand description
One separable single-level 2D 9/7 transform result.
Fields§
§ll: Vec<T>Low-horizontal, low-vertical band.
hl: Vec<T>High-horizontal, low-vertical band.
lh: Vec<T>Low-horizontal, high-vertical band.
hh: Vec<T>High-horizontal, high-vertical band.
low_width: usizeWidth of horizontally low-pass bands.
low_height: usizeHeight of vertically low-pass bands.
high_width: usizeWidth of horizontally high-pass bands.
high_height: usizeHeight of vertically high-pass bands.
Trait Implementations§
Source§impl<T> Clone for Dwt97TwoDimensional<T>where
T: Clone,
impl<T> Clone for Dwt97TwoDimensional<T>where
T: Clone,
Source§fn clone(&self) -> Dwt97TwoDimensional<T>
fn clone(&self) -> Dwt97TwoDimensional<T>
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 moreSource§impl<T> Debug for Dwt97TwoDimensional<T>where
T: Debug,
impl<T> Debug for Dwt97TwoDimensional<T>where
T: Debug,
Source§impl<T> PartialEq for Dwt97TwoDimensional<T>where
T: PartialEq,
impl<T> PartialEq for Dwt97TwoDimensional<T>where
T: PartialEq,
Source§fn eq(&self, other: &Dwt97TwoDimensional<T>) -> bool
fn eq(&self, other: &Dwt97TwoDimensional<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for Dwt97TwoDimensional<T>where
T: PartialEq,
Auto Trait Implementations§
impl<T> Freeze for Dwt97TwoDimensional<T>
impl<T> RefUnwindSafe for Dwt97TwoDimensional<T>where
T: RefUnwindSafe,
impl<T> Send for Dwt97TwoDimensional<T>where
T: Send,
impl<T> Sync for Dwt97TwoDimensional<T>where
T: Sync,
impl<T> Unpin for Dwt97TwoDimensional<T>where
T: Unpin,
impl<T> UnsafeUnpin for Dwt97TwoDimensional<T>
impl<T> UnwindSafe for Dwt97TwoDimensional<T>where
T: UnwindSafe,
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