pub enum Algorithm {
Nlmeans,
NlmeansHq(HqParams),
}Expand description
Which denoising algorithm variant to run.
Variants§
Nlmeans
The fast NLMeans path.
NlmeansHq(HqParams)
Quality-focused NLMeans with noise-calibrated weighting.
Trait Implementations§
impl Copy for Algorithm
impl StructuralPartialEq for Algorithm
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnsafeUnpin for Algorithm
impl UnwindSafe for Algorithm
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