mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-21 06:11:09 +08:00
tracking: apply CV_OVERRIDE/CV_FINAL
This commit is contained in:
@@ -9,9 +9,9 @@ namespace cv{
|
||||
public:
|
||||
TrackingFunctionPF(const Mat& chosenRect);
|
||||
void update(const Mat& image);
|
||||
int getDims() const { return 4; }
|
||||
double calc(const double* x) const;
|
||||
void correctParams(double* pt)const;
|
||||
int getDims() const CV_OVERRIDE { return 4; }
|
||||
double calc(const double* x) const CV_OVERRIDE;
|
||||
void correctParams(double* pt)const CV_OVERRIDE;
|
||||
private:
|
||||
Mat _image;
|
||||
static inline Rect rectFromRow(const double* row);
|
||||
|
Reference in New Issue
Block a user