pub enum EdgeDetector {
Sobel,
Prewitt,
Canny {
low_threshold: f64,
high_threshold: f64,
},
}Expand description
Edge detection method
Variants§
Trait Implementations§
Source§impl Clone for EdgeDetector
impl Clone for EdgeDetector
Source§fn clone(&self) -> EdgeDetector
fn clone(&self) -> EdgeDetector
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 EdgeDetector
impl Debug for EdgeDetector
Source§impl PartialEq for EdgeDetector
impl PartialEq for EdgeDetector
impl Copy for EdgeDetector
impl StructuralPartialEq for EdgeDetector
Auto Trait Implementations§
impl Freeze for EdgeDetector
impl RefUnwindSafe for EdgeDetector
impl Send for EdgeDetector
impl Sync for EdgeDetector
impl Unpin for EdgeDetector
impl UnsafeUnpin for EdgeDetector
impl UnwindSafe for EdgeDetector
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