#[repr(u32)]pub enum CannyThresholdType {
MANUAL = 0,
OTSU = 1,
}
Expand description
Canny edge detector threshold operations types
Variants§
MANUAL = 0
User has to define canny thresholds manually
OTSU = 1
Determine canny algorithm high threshold using Otsu algorithm automatically
Trait Implementations§
Source§impl Clone for CannyThresholdType
impl Clone for CannyThresholdType
Source§fn clone(&self) -> CannyThresholdType
fn clone(&self) -> CannyThresholdType
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 Debug for CannyThresholdType
impl Debug for CannyThresholdType
Source§impl PartialEq for CannyThresholdType
impl PartialEq for CannyThresholdType
impl Copy for CannyThresholdType
impl StructuralPartialEq for CannyThresholdType
Auto Trait Implementations§
impl Freeze for CannyThresholdType
impl RefUnwindSafe for CannyThresholdType
impl Send for CannyThresholdType
impl Sync for CannyThresholdType
impl Unpin for CannyThresholdType
impl UnwindSafe for CannyThresholdType
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