pub struct StreamingDenoiseConfig<T: SignalType> {
pub method: ThresholdMethod,
pub rule: ThresholdRule,
pub manual_thresholds: Option<Vec<T>>,
pub noise_variance: Option<T>,
pub adaptation_rate: f64,
pub min_threshold: T,
}Expand description
Denoising configuration for streaming
Fields§
§method: ThresholdMethodThreshold method
rule: ThresholdRuleThreshold selection rule
manual_thresholds: Option<Vec<T>>Manual threshold override (per level)
noise_variance: Option<T>Noise variance estimate (if known)
adaptation_rate: f64Adaptation rate for threshold updates
min_threshold: TMinimum threshold value
Trait Implementations§
Source§impl<T: Clone + SignalType> Clone for StreamingDenoiseConfig<T>
impl<T: Clone + SignalType> Clone for StreamingDenoiseConfig<T>
Source§fn clone(&self) -> StreamingDenoiseConfig<T>
fn clone(&self) -> StreamingDenoiseConfig<T>
Returns a duplicate of the value. Read more
1.0.0 · 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 + SignalType> Debug for StreamingDenoiseConfig<T>
impl<T: Debug + SignalType> Debug for StreamingDenoiseConfig<T>
Source§impl<T: SignalType> Default for StreamingDenoiseConfig<T>
impl<T: SignalType> Default for StreamingDenoiseConfig<T>
Auto Trait Implementations§
impl<T> Freeze for StreamingDenoiseConfig<T>where
T: Freeze,
impl<T> RefUnwindSafe for StreamingDenoiseConfig<T>where
T: RefUnwindSafe,
impl<T> Send for StreamingDenoiseConfig<T>
impl<T> Sync for StreamingDenoiseConfig<T>
impl<T> Unpin for StreamingDenoiseConfig<T>where
T: Unpin,
impl<T> UnwindSafe for StreamingDenoiseConfig<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