Commit a8374b27 authored by Alexander Alekhin's avatar Alexander Alekhin

phase_unwrapping: apply CV_OVERRIDE/CV_FINAL

parent 0aaaba08
...@@ -51,13 +51,13 @@ public: ...@@ -51,13 +51,13 @@ public:
explicit HistogramPhaseUnwrapping_Impl( const HistogramPhaseUnwrapping::Params &parameters = explicit HistogramPhaseUnwrapping_Impl( const HistogramPhaseUnwrapping::Params &parameters =
HistogramPhaseUnwrapping::Params() ); HistogramPhaseUnwrapping::Params() );
// Destructor // Destructor
virtual ~HistogramPhaseUnwrapping_Impl(){}; virtual ~HistogramPhaseUnwrapping_Impl() CV_OVERRIDE {};
// Unwrap phase map // Unwrap phase map
void unwrapPhaseMap( InputArray wrappedPhaseMap, OutputArray unwrappedPhaseMap, void unwrapPhaseMap( InputArray wrappedPhaseMap, OutputArray unwrappedPhaseMap,
InputArray shadowMask = noArray() ); InputArray shadowMask = noArray() ) CV_OVERRIDE;
// Get reliability map computed from the wrapped phase map // Get reliability map computed from the wrapped phase map
void getInverseReliabilityMap( OutputArray reliabilityMap ); void getInverseReliabilityMap( OutputArray reliabilityMap ) CV_OVERRIDE;
private: private:
// Class describing a pixel // Class describing a pixel
...@@ -780,4 +780,4 @@ Ptr<HistogramPhaseUnwrapping> HistogramPhaseUnwrapping::create( const HistogramP ...@@ -780,4 +780,4 @@ Ptr<HistogramPhaseUnwrapping> HistogramPhaseUnwrapping::create( const HistogramP
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment