pub trait HistogramPhaseUnwrapping: HistogramPhaseUnwrappingConst + PhaseUnwrapping {
    fn as_raw_mut_HistogramPhaseUnwrapping(&mut self) -> *mut c_void;

    fn get_inverse_reliability_map(
        &mut self,
        reliability_map: &mut dyn ToOutputArray
    ) -> Result<()> { ... } }

Required Methods

Provided Methods

Get the reliability map computed from the wrapped phase map.

Parameters
  • reliabilityMap: Image where the reliability map is stored.

Implementations

Constructor

Parameters
  • parameters: HistogramPhaseUnwrapping parameters HistogramPhaseUnwrapping::Params: width,height of the phase map and histogram characteristics.
C++ default parameters
  • parameters: HistogramPhaseUnwrapping::Params()

Implementors