[][src]Struct opencv::text::ERStat

pub struct ERStat { /* fields omitted */ }

The ERStat structure represents a class-specific Extremal Region (ER).

An ER is a 4-connected set of pixels with all its grey-level values smaller than the values in its outer boundary. A class-specific ER is selected (using a classifier) from all the ER's in the component tree of the image. :

Implementations

impl ERStat[src]

impl ERStat[src]

pub fn new(level: i32, pixel: i32, x: i32, y: i32) -> Result<ERStat>[src]

Constructor

C++ default parameters

  • level: 256
  • pixel: 0
  • x: 0
  • y: 0

Trait Implementations

impl Boxed for ERStat[src]

impl Drop for ERStat[src]

impl ERStatTrait for ERStat[src]

impl Send for ERStat[src]

impl VectorElement for ERStat where
    Vector<ERStat>: VectorExtern<ERStat>, 
[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, 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.