[][src]Struct opencv::phase_unwrapping::HistogramPhaseUnwrapping_Params

#[repr(C)]pub struct HistogramPhaseUnwrapping_Params {
    pub width: i32,
    pub height: i32,
    pub hist_thresh: f32,
    pub nbr_of_small_bins: i32,
    pub nbr_of_large_bins: i32,
}

Parameters of phaseUnwrapping constructor.

Parameters

  • width: Phase map width.
  • height: Phase map height.
  • histThresh: Bins in the histogram are not of equal size. Default value is 3pipi. The one before "histThresh" value are smaller.
  • nbrOfSmallBins: Number of bins between 0 and "histThresh". Default value is 10.
  • nbrOfLargeBins: Number of bins between "histThresh" and 32pipi (highest edge reliability value). Default value is 5.

Fields

width: i32height: i32hist_thresh: f32nbr_of_small_bins: i32nbr_of_large_bins: i32

Implementations

impl HistogramPhaseUnwrapping_Params[src]

Trait Implementations

impl Clone for HistogramPhaseUnwrapping_Params[src]

impl Copy for HistogramPhaseUnwrapping_Params[src]

impl Debug for HistogramPhaseUnwrapping_Params[src]

impl PartialEq<HistogramPhaseUnwrapping_Params> for HistogramPhaseUnwrapping_Params[src]

impl StructuralPartialEq for HistogramPhaseUnwrapping_Params[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.