[][src]Struct cv::objdetect::HogDescriptor

pub struct HogDescriptor {
    pub params: HogParams,
    // some fields omitted
}

HogDescriptor implements Histogram of Oriented Gradients.

Fields

params: HogParams

Hog parameters.

Methods

impl HogDescriptor[src]

pub fn with_params(params: HogParams) -> HogDescriptor[src]

Creates a HogDescriptor with provided parameters.

pub fn set_svm_detector(&mut self, detector: SvmDetector)[src]

Sets the SVM detector.

Trait Implementations

impl ObjectDetect for HogDescriptor[src]

impl Default for HogDescriptor[src]

impl Send for HogDescriptor[src]

impl Drop for HogDescriptor[src]

impl Debug for HogDescriptor[src]

Auto Trait Implementations

impl !Sync for HogDescriptor

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.