1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-28 23:03:03 +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
+10 -10
View File
@@ -283,8 +283,8 @@ namespace cv{
FirstScan8Connectivity& operator=(const FirstScan8Connectivity& ) { return *this; }
void operator()(const cv::Range& range) const{
void operator()(const cv::Range& range) const CV_OVERRIDE
{
int r = range.start;
chunksSizeAndLabels_[r] = range.end;
@@ -385,8 +385,8 @@ namespace cv{
FirstScan4Connectivity& operator=(const FirstScan4Connectivity& ) { return *this; }
void operator()(const cv::Range& range) const{
void operator()(const cv::Range& range) const CV_OVERRIDE
{
int r = range.start;
chunksSizeAndLabels_[r] = range.end;
@@ -462,8 +462,8 @@ namespace cv{
SecondScan& operator=(const SecondScan& ) { return *this; }
void operator()(const cv::Range& range) const{
void operator()(const cv::Range& range) const CV_OVERRIDE
{
int r = range.start;
const int rowBegin = r;
const int rowEnd = range.end;
@@ -839,8 +839,8 @@ namespace cv{
FirstScan& operator=(const FirstScan&) { return *this; }
void operator()(const cv::Range& range) const{
void operator()(const cv::Range& range) const CV_OVERRIDE
{
int r = range.start;
r += (r % 2);
@@ -1907,8 +1907,8 @@ namespace cv{
SecondScan& operator=(const SecondScan& ) { return *this; }
void operator()(const cv::Range& range) const{
void operator()(const cv::Range& range) const CV_OVERRIDE
{
int r = range.start;
r += (r % 2);
const int rowBegin = r;