#[repr(u32)]pub enum MorphologyMethod {
Show 23 variants
Undefined = 0,
Convolve = 1,
Correlate = 2,
Erode = 3,
Dilate = 4,
ErodeIntensity = 5,
DilateIntensity = 6,
IterativeDistance = 7,
Open = 8,
Close = 9,
OpenIntensity = 10,
CloseIntensity = 11,
Smooth = 12,
EdgeIn = 13,
EdgeOut = 14,
Edge = 15,
TopHat = 16,
BottomHat = 17,
HitAndMiss = 18,
Thinning = 19,
Thicken = 20,
Distance = 21,
Voronoi = 22,
}
Variants§
Undefined = 0
Convolve = 1
Correlate = 2
Erode = 3
Dilate = 4
ErodeIntensity = 5
DilateIntensity = 6
IterativeDistance = 7
Open = 8
Close = 9
OpenIntensity = 10
CloseIntensity = 11
Smooth = 12
EdgeIn = 13
EdgeOut = 14
Edge = 15
TopHat = 16
BottomHat = 17
HitAndMiss = 18
Thinning = 19
Thicken = 20
Distance = 21
Voronoi = 22
Trait Implementations§
Source§impl Clone for MorphologyMethod
impl Clone for MorphologyMethod
Source§fn clone(&self) -> MorphologyMethod
fn clone(&self) -> MorphologyMethod
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 MorphologyMethod
impl Debug for MorphologyMethod
Source§impl Hash for MorphologyMethod
impl Hash for MorphologyMethod
Source§impl PartialEq for MorphologyMethod
impl PartialEq for MorphologyMethod
impl Copy for MorphologyMethod
impl Eq for MorphologyMethod
impl StructuralPartialEq for MorphologyMethod
Auto Trait Implementations§
impl Freeze for MorphologyMethod
impl RefUnwindSafe for MorphologyMethod
impl Send for MorphologyMethod
impl Sync for MorphologyMethod
impl Unpin for MorphologyMethod
impl UnwindSafe for MorphologyMethod
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