Commit 27cf9412 authored by Jon Eyolfson's avatar Jon Eyolfson Committed by GitHub

Remove unused method declarations in hog.cpp

The class `App` appears to have two unused methods: `message` and `checkRectSimilarity`. The is no definition or use of either of these methods. This appears to be dead code.
parent 34f9c039
...@@ -28,16 +28,6 @@ public: ...@@ -28,16 +28,6 @@ public:
void workBegin(); void workBegin();
void workEnd(); void workEnd();
string workFps() const; string workFps() const;
string message() const;
// This function test if gpu_rst matches cpu_rst.
// If the two vectors are not equal, it will return the difference in vector size
// Else if will return
// (total diff of each cpu and gpu rects covered pixels)/(total cpu rects covered pixels)
double checkRectSimilarity(Size sz,
std::vector<Rect>& cpu_rst,
std::vector<Rect>& gpu_rst);
private: private:
App operator=(App&); App operator=(App&);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment