[][src]Enum opencv::imgproc::ConnectedComponentsTypes

#[repr(C)]pub enum ConnectedComponentsTypes {
    CC_STAT_LEFT,
    CC_STAT_TOP,
    CC_STAT_WIDTH,
    CC_STAT_HEIGHT,
    CC_STAT_AREA,
    CC_STAT_MAX,
}

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

impl Clone for ConnectedComponentsTypes[src]

impl Copy for ConnectedComponentsTypes[src]

impl Debug for ConnectedComponentsTypes[src]

impl PartialEq<ConnectedComponentsTypes> for ConnectedComponentsTypes[src]

impl StructuralPartialEq for ConnectedComponentsTypes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.