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:
@@ -1077,7 +1077,7 @@ public:
|
||||
|
||||
~HoughCirclesAccumInvoker() { }
|
||||
|
||||
void operator()(const Range &boundaries) const
|
||||
void operator()(const Range &boundaries) const CV_OVERRIDE
|
||||
{
|
||||
Mat accumLocal = Mat(arows + 2, acols + 2, CV_32SC1, Scalar::all(0));
|
||||
int *adataLocal = accumLocal.ptr<int>();
|
||||
@@ -1217,7 +1217,7 @@ public:
|
||||
|
||||
~HoughCirclesFindCentersInvoker() {}
|
||||
|
||||
void operator()(const Range &boundaries) const
|
||||
void operator()(const Range &boundaries) const CV_OVERRIDE
|
||||
{
|
||||
int startRow = boundaries.start;
|
||||
int endRow = boundaries.end;
|
||||
@@ -1334,7 +1334,7 @@ public:
|
||||
protected:
|
||||
inline int filterCircles(const Point2f& curCenter, float* ddata) const;
|
||||
|
||||
void operator()(const Range &boundaries) const
|
||||
void operator()(const Range &boundaries) const CV_OVERRIDE
|
||||
{
|
||||
std::vector<EstimatedCircle> circlesLocal;
|
||||
const int nBinsPerDr = 10;
|
||||
|
||||
Reference in New Issue
Block a user