#[repr(u32)]pub enum KernelInfoType {
Show 38 variants
Undefined = 0,
Unity = 1,
Gaussian = 2,
DoG = 3,
LoG = 4,
Blur = 5,
Comet = 6,
Binomial = 7,
Laplacian = 8,
Sobel = 9,
FreiChen = 10,
Roberts = 11,
Prewitt = 12,
Compass = 13,
Kirsch = 14,
Diamond = 15,
Square = 16,
Rectangle = 17,
Octagon = 18,
Disk = 19,
Plus = 20,
Cross = 21,
Ring = 22,
Peaks = 23,
Edges = 24,
Corners = 25,
Diagonals = 26,
LineEnds = 27,
LineJunctions = 28,
Ridges = 29,
ConvexHull = 30,
ThinSE = 31,
Skeleton = 32,
Chebyshev = 33,
Manhattan = 34,
Octagonal = 35,
Euclidean = 36,
UserDefined = 37,
}
Variants§
Undefined = 0
Unity = 1
Gaussian = 2
DoG = 3
LoG = 4
Blur = 5
Comet = 6
Binomial = 7
Laplacian = 8
Sobel = 9
FreiChen = 10
Roberts = 11
Prewitt = 12
Compass = 13
Kirsch = 14
Diamond = 15
Square = 16
Rectangle = 17
Octagon = 18
Disk = 19
Plus = 20
Cross = 21
Ring = 22
Peaks = 23
Edges = 24
Corners = 25
Diagonals = 26
LineEnds = 27
LineJunctions = 28
Ridges = 29
ConvexHull = 30
ThinSE = 31
Skeleton = 32
Chebyshev = 33
Manhattan = 34
Octagonal = 35
Euclidean = 36
UserDefined = 37
Trait Implementations§
Source§impl Clone for KernelInfoType
impl Clone for KernelInfoType
Source§fn clone(&self) -> KernelInfoType
fn clone(&self) -> KernelInfoType
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 KernelInfoType
impl Debug for KernelInfoType
Source§impl Hash for KernelInfoType
impl Hash for KernelInfoType
Source§impl PartialEq for KernelInfoType
impl PartialEq for KernelInfoType
impl Copy for KernelInfoType
impl Eq for KernelInfoType
impl StructuralPartialEq for KernelInfoType
Auto Trait Implementations§
impl Freeze for KernelInfoType
impl RefUnwindSafe for KernelInfoType
impl Send for KernelInfoType
impl Sync for KernelInfoType
impl Unpin for KernelInfoType
impl UnwindSafe for KernelInfoType
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