[][src]Struct opencv::face::StandardCollector

pub struct StandardCollector { /* fields omitted */ }

Default predict collector

Trace minimal distance with treshhold checking (that is default behavior for most predict logic)

Implementations

impl StandardCollector[src]

impl StandardCollector[src]

pub fn new(threshold_: f64) -> Result<StandardCollector>[src]

Constructor

Parameters

  • threshold_: set threshold

C++ default parameters

  • threshold_: DBL_MAX

pub fn create(threshold: f64) -> Result<Ptr<StandardCollector>>[src]

Static constructor

Parameters

  • threshold: set threshold

C++ default parameters

  • threshold: DBL_MAX

Trait Implementations

impl Boxed for StandardCollector[src]

impl Drop for StandardCollector[src]

impl PredictCollector for StandardCollector[src]

impl Send for StandardCollector[src]

impl StandardCollectorTrait for StandardCollector[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.