pub enum JpegToHtj2kCoefficientPath {
IntegerDirect53,
FloatDirectLinear53,
FloatDirectLinear97,
}Expand description
Experimental production path used to generate HTJ2K wavelet coefficients.
Variants§
IntegerDirect53
Exact reversible 5/3 coefficients relative to signinum-jpeg scalar
ISLOW block decode semantics. The first 5/3 level is computed from DCT
blocks without materializing a full spatial image plane; later levels
recurse conventionally over the LL coefficient band.
FloatDirectLinear53
Floating-point linear composition of IDCT and 5/3 analysis. This is the linear math oracle path and remains useful for validating the direct matrix composition, but it is not the integer reversible production default.
FloatDirectLinear97
Floating-point linear composition of IDCT and irreversible 9/7 analysis. This is a lossy experimental path and must be paired with an irreversible HTJ2K encode.
Trait Implementations§
Source§impl Clone for JpegToHtj2kCoefficientPath
impl Clone for JpegToHtj2kCoefficientPath
Source§fn clone(&self) -> JpegToHtj2kCoefficientPath
fn clone(&self) -> JpegToHtj2kCoefficientPath
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 moreimpl Copy for JpegToHtj2kCoefficientPath
Source§impl Debug for JpegToHtj2kCoefficientPath
impl Debug for JpegToHtj2kCoefficientPath
impl Eq for JpegToHtj2kCoefficientPath
Source§impl PartialEq for JpegToHtj2kCoefficientPath
impl PartialEq for JpegToHtj2kCoefficientPath
Source§fn eq(&self, other: &JpegToHtj2kCoefficientPath) -> bool
fn eq(&self, other: &JpegToHtj2kCoefficientPath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JpegToHtj2kCoefficientPath
Auto Trait Implementations§
impl Freeze for JpegToHtj2kCoefficientPath
impl RefUnwindSafe for JpegToHtj2kCoefficientPath
impl Send for JpegToHtj2kCoefficientPath
impl Sync for JpegToHtj2kCoefficientPath
impl Unpin for JpegToHtj2kCoefficientPath
impl UnsafeUnpin for JpegToHtj2kCoefficientPath
impl UnwindSafe for JpegToHtj2kCoefficientPath
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