1
0
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:
Alexander Alekhin
2018-03-21 16:58:13 +03:00
parent 0aaaba08af
commit a8374b2767

View File

@@ -51,13 +51,13 @@ public:
explicit HistogramPhaseUnwrapping_Impl( const HistogramPhaseUnwrapping::Params &parameters =
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
}
}
}
}