1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

imgproc: apply CV_OVERRIDE/CV_FINAL

This commit is contained in:
Alexander Alekhin
2018-03-15 16:16:51 +03:00
parent 9111538bfb
commit 5d36ee2fe7
23 changed files with 243 additions and 243 deletions
+3 -3
View File
@@ -1243,7 +1243,7 @@ public:
hist.setTo(0);
}
virtual void operator() (const Range & range) const
virtual void operator() (const Range & range) const CV_OVERRIDE
{
CV_INSTRUMENT_REGION_IPP()
@@ -3700,7 +3700,7 @@ public:
: src_(src), globalHistogram_(histogram), histogramLock_(histogramLock)
{ }
void operator()( const cv::Range& rowRange ) const
void operator()( const cv::Range& rowRange ) const CV_OVERRIDE
{
int localHistogram[HIST_SZ] = {0, };
@@ -3758,7 +3758,7 @@ public:
lut_(lut)
{ }
void operator()( const cv::Range& rowRange ) const
void operator()( const cv::Range& rowRange ) const CV_OVERRIDE
{
const size_t sstep = src_.step;
const size_t dstep = dst_.step;