Trait opencv::prelude::PhaseUnwrappingTrait
source · pub trait PhaseUnwrappingTrait: AlgorithmTrait + PhaseUnwrappingTraitConst {
// Required method
fn as_raw_mut_PhaseUnwrapping(&mut self) -> *mut c_void;
// Provided method
fn unwrap_phase_map(
&mut self,
wrapped_phase_map: &impl ToInputArray,
unwrapped_phase_map: &mut impl ToOutputArray,
shadow_mask: &impl ToInputArray
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::phase_unwrapping::PhaseUnwrapping
Required Methods§
fn as_raw_mut_PhaseUnwrapping(&mut self) -> *mut c_void
Provided Methods§
sourcefn unwrap_phase_map(
&mut self,
wrapped_phase_map: &impl ToInputArray,
unwrapped_phase_map: &mut impl ToOutputArray,
shadow_mask: &impl ToInputArray
) -> Result<()>
fn unwrap_phase_map( &mut self, wrapped_phase_map: &impl ToInputArray, unwrapped_phase_map: &mut impl ToOutputArray, shadow_mask: &impl ToInputArray ) -> Result<()>
Unwraps a 2D phase map.
Parameters
- wrappedPhaseMap: The wrapped phase map of type CV_32FC1 that needs to be unwrapped.
- unwrappedPhaseMap: The unwrapped phase map.
- shadowMask: Optional CV_8UC1 mask image used when some pixels do not hold any phase information in the wrapped phase map.
C++ default parameters
- shadow_mask: noArray()