phase_unwrapping: apply CV_OVERRIDE/CV_FINAL

pull/1588/head
Alexander Alekhin 7 years ago
parent 0aaaba08af
commit a8374b2767
  1. 6
      modules/phase_unwrapping/src/histogramphaseunwrapping.cpp

@ -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

Loading…
Cancel
Save