Struct imageproc::hog::HogOptions [] [src]

pub struct HogOptions {
    pub orientations: usize,
    pub signed: bool,
    pub cell_side: usize,
    pub block_side: usize,
    pub block_stride: usize,
}

Parameters for HoG descriptors.

Fields

Number of gradient orientation bins.

Whether gradients in opposite directions are treated as equal.

Width and height of cell in pixels.

Width and height of block in cells.

Offset of the start of one block from the next in cells.

Methods

impl HogOptions
[src]

User-provided options, prior to validation.

Trait Implementations

impl Debug for HogOptions
[src]

Formats the value using the given formatter.

impl Copy for HogOptions
[src]

impl Clone for HogOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HogOptions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HogOptions
[src]