pub struct CrfParameters {
pub c_thresh_baseline: u8,
pub c_thresh_max: u8,
pub c_increase_velocity: u8,
pub feature_c_radius: u16,
}
Fields§
§c_thresh_baseline: u8
The baseline (starting) contrast threshold for all pixels
c_thresh_max: u8
The maximum contrast threshold for all pixels
c_increase_velocity: u8
The velocity at which to increase the contrast threshold for all pixels (increment c by 1 for every X input intervals, if it’s stable)
feature_c_radius: u16
The radius for which to reset the c-threshold for neighboring pixels (if feature detection is enabled)
Trait Implementations§
Source§impl Clone for CrfParameters
impl Clone for CrfParameters
Source§fn clone(&self) -> CrfParameters
fn clone(&self) -> CrfParameters
Returns a copy 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 Debug for CrfParameters
impl Debug for CrfParameters
Source§impl PartialEq for CrfParameters
impl PartialEq for CrfParameters
impl Copy for CrfParameters
impl StructuralPartialEq for CrfParameters
Auto Trait Implementations§
impl Freeze for CrfParameters
impl RefUnwindSafe for CrfParameters
impl Send for CrfParameters
impl Sync for CrfParameters
impl Unpin for CrfParameters
impl UnwindSafe for CrfParameters
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