[][src]Struct opencv::xfeatures2d::StarDetector

pub struct StarDetector { /* fields omitted */ }

The class implements the keypoint detector introduced by Agrawal08, synonym of StarDetector. :

Implementations

impl StarDetector[src]

impl StarDetector[src]

pub fn create(
    max_size: i32,
    response_threshold: i32,
    line_threshold_projected: i32,
    line_threshold_binarized: i32,
    suppress_nonmax_size: i32
) -> Result<Ptr<StarDetector>>
[src]

the full constructor

C++ default parameters

  • max_size: 45
  • response_threshold: 30
  • line_threshold_projected: 10
  • line_threshold_binarized: 8
  • suppress_nonmax_size: 5

Trait Implementations

impl AlgorithmTrait for StarDetector[src]

impl Boxed for StarDetector[src]

impl Drop for StarDetector[src]

impl Feature2DTrait for StarDetector[src]

impl Send for StarDetector[src]

impl StarDetectorTrait for StarDetector[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.