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

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

HogDescriptor implements Histogram of Oriented Gradients.

Fields

params: HogParams

Hog parameters.

Implementations

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 Debug for HogDescriptor[src]

impl Default for HogDescriptor[src]

impl Drop for HogDescriptor[src]

impl ObjectDetect for HogDescriptor[src]

impl Send for HogDescriptor[src]

Auto Trait Implementations

impl RefUnwindSafe for HogDescriptor

impl !Sync for HogDescriptor

impl Unpin for HogDescriptor

impl UnwindSafe for HogDescriptor

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.