[][src]Enum opencv::imgproc::FloodFillFlags

#[repr(C)]pub enum FloodFillFlags {
    FLOODFILL_FIXED_RANGE,
    FLOODFILL_MASK_ONLY,
}

floodfill algorithm flags

Variants

FLOODFILL_FIXED_RANGE

If set, the difference between the current pixel and seed pixel is considered. Otherwise, the difference between neighbor pixels is considered (that is, the range is floating).

FLOODFILL_MASK_ONLY

If set, the function does not change the image ( newVal is ignored), and only fills the mask with the value specified in bits 8-16 of flags as described above. This option only make sense in function variants that have the mask parameter.

Trait Implementations

impl Clone for FloodFillFlags[src]

impl Copy for FloodFillFlags[src]

impl Debug for FloodFillFlags[src]

impl PartialEq<FloodFillFlags> for FloodFillFlags[src]

impl StructuralPartialEq for FloodFillFlags[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.