1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-18 00:01:17 +08:00

dpm: apply CV_OVERRIDE/CV_FINAL

This commit is contained in:
Alexander Alekhin
2018-03-21 16:58:05 +03:00
parent 55767bfcda
commit 14341291b0
4 changed files with 12 additions and 12 deletions

View File

@@ -141,7 +141,7 @@ class ParalComputeRootPCAScores : public ParallelLoopBody
int dim, std::vector< Mat > &scores);
// parallel loop body
void operator() (const Range &range) const;
void operator() (const Range &range) const CV_OVERRIDE;
ParalComputeRootPCAScores(const ParalComputeRootPCAScores &pComp);

View File

@@ -49,19 +49,19 @@ namespace cv
namespace dpm
{
class DPMDetectorImpl : public DPMDetector
class DPMDetectorImpl CV_FINAL : public DPMDetector
{
public:
DPMDetectorImpl( const vector<string>& filenames, const vector<string>& classNames=vector<string>() );
~DPMDetectorImpl();
~DPMDetectorImpl() CV_OVERRIDE;
bool isEmpty() const;
bool isEmpty() const CV_OVERRIDE;
void detect(Mat &image, CV_OUT vector<ObjectDetection>& objects);
void detect(Mat &image, CV_OUT vector<ObjectDetection>& objects) CV_OVERRIDE;
const vector<string>& getClassNames() const;
size_t getClassCount() const;
const vector<string>& getClassNames() const CV_OVERRIDE;
size_t getClassCount() const CV_OVERRIDE;
string extractModelName( const string& filename );
private:

View File

@@ -153,7 +153,7 @@ class ParalComputePyramid : public ParallelLoopBody
void initialize();
// parallel loop body
void operator() (const Range &range) const;
void operator() (const Range &range) const CV_OVERRIDE;
private:
// image to compute feature pyramid

View File

@@ -130,11 +130,11 @@ class CascadeModel : public Model
std::vector< Mat > partPCAFilters;
public:
CascadeModel() {}
~CascadeModel() {}
~CascadeModel() CV_OVERRIDE {}
void initModel();
bool serialize(const std::string &filename) const;
bool deserialize(const std::string &filename);
void initModel() CV_OVERRIDE;
bool serialize(const std::string &filename) const CV_OVERRIDE;
bool deserialize(const std::string &filename) CV_OVERRIDE;
};
} // namespace lsvm