Enum opencv::imgproc::ConnectedComponentsTypes
source · [−]#[repr(C)]
pub enum ConnectedComponentsTypes {
CC_STAT_LEFT,
CC_STAT_TOP,
CC_STAT_WIDTH,
CC_STAT_HEIGHT,
CC_STAT_AREA,
CC_STAT_MAX,
}
Expand description
connected components statistics
Variants
CC_STAT_LEFT
The leftmost (x) coordinate which is the inclusive start of the bounding box in the horizontal direction.
CC_STAT_TOP
The topmost (y) coordinate which is the inclusive start of the bounding box in the vertical direction.
CC_STAT_WIDTH
The horizontal size of the bounding box
CC_STAT_HEIGHT
The vertical size of the bounding box
CC_STAT_AREA
The total area (in pixels) of the connected component
CC_STAT_MAX
Max enumeration value. Used internally only for memory allocation
Trait Implementations
sourceimpl Clone for ConnectedComponentsTypes
impl Clone for ConnectedComponentsTypes
sourcefn clone(&self) -> ConnectedComponentsTypes
fn clone(&self) -> ConnectedComponentsTypes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ConnectedComponentsTypes
impl Debug for ConnectedComponentsTypes
sourceimpl PartialEq<ConnectedComponentsTypes> for ConnectedComponentsTypes
impl PartialEq<ConnectedComponentsTypes> for ConnectedComponentsTypes
sourcefn eq(&self, other: &ConnectedComponentsTypes) -> bool
fn eq(&self, other: &ConnectedComponentsTypes) -> bool
impl Copy for ConnectedComponentsTypes
impl Eq for ConnectedComponentsTypes
impl StructuralEq for ConnectedComponentsTypes
impl StructuralPartialEq for ConnectedComponentsTypes
Auto Trait Implementations
impl RefUnwindSafe for ConnectedComponentsTypes
impl Send for ConnectedComponentsTypes
impl Sync for ConnectedComponentsTypes
impl Unpin for ConnectedComponentsTypes
impl UnwindSafe for ConnectedComponentsTypes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more