Package org.opencv.phase_unwrapping
Class PhaseUnwrapping
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.phase_unwrapping.PhaseUnwrapping
 
 
- 
- Direct Known Subclasses:
- HistogramPhaseUnwrapping
 
 public class PhaseUnwrapping extends Algorithm Abstract base class for phase unwrapping.
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedPhaseUnwrapping(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PhaseUnwrapping__fromPtr__(long addr)protected voidfinalize()voidunwrapPhaseMap(Mat wrappedPhaseMap, Mat unwrappedPhaseMap)Unwraps a 2D phase map.voidunwrapPhaseMap(Mat wrappedPhaseMap, Mat unwrappedPhaseMap, Mat shadowMask)Unwraps a 2D phase map.- 
Methods inherited from class org.opencv.core.Algorithmclear, empty, getDefaultName, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static PhaseUnwrapping __fromPtr__(long addr) 
 - 
unwrapPhaseMappublic void unwrapPhaseMap(Mat wrappedPhaseMap, Mat unwrappedPhaseMap, Mat shadowMask) 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.
 
 - 
unwrapPhaseMappublic void unwrapPhaseMap(Mat wrappedPhaseMap, Mat unwrappedPhaseMap) 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.
 
 
- 
 
-