mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-16 22:35:51 +08:00
phase_unwrapping: apply CV_OVERRIDE/CV_FINAL
This commit is contained in:
@@ -51,13 +51,13 @@ public:
|
||||
explicit HistogramPhaseUnwrapping_Impl( const HistogramPhaseUnwrapping::Params ¶meters =
|
||||
HistogramPhaseUnwrapping::Params() );
|
||||
// Destructor
|
||||
virtual ~HistogramPhaseUnwrapping_Impl(){};
|
||||
virtual ~HistogramPhaseUnwrapping_Impl() CV_OVERRIDE {};
|
||||
|
||||
// Unwrap phase map
|
||||
void unwrapPhaseMap( InputArray wrappedPhaseMap, OutputArray unwrappedPhaseMap,
|
||||
InputArray shadowMask = noArray() );
|
||||
InputArray shadowMask = noArray() ) CV_OVERRIDE;
|
||||
// Get reliability map computed from the wrapped phase map
|
||||
void getInverseReliabilityMap( OutputArray reliabilityMap );
|
||||
void getInverseReliabilityMap( OutputArray reliabilityMap ) CV_OVERRIDE;
|
||||
|
||||
private:
|
||||
// Class describing a pixel
|
||||
@@ -780,4 +780,4 @@ Ptr<HistogramPhaseUnwrapping> HistogramPhaseUnwrapping::create( const HistogramP
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user