Add Sconscript for unit test
[trackerpp.git] / src / Metrics.h
diff --git a/src/Metrics.h b/src/Metrics.h
deleted file mode 100644 (file)
index c991d9f..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _METRICS_H_
-#define _METRICS_H_
-
-#include <string>
-#include <opencv2/opencv.hpp>
-#include "SharedPtr.h"
-
-namespace suanzi {
-
-    TK_DECLARE_PTR(Metrics);
-    TK_DECLARE_PTR(Patch);
-    class Metrics
-    {
-    public:
-        Metrics(const std::string& cl_path = "");
-        ~Metrics(){}
-        const static long int MaxCost = 100000;
-        const static int MaxPatch = 5;
-
-    private:
-        cv::HOGDescriptor descriptor = {cv::Size(64, 128), cv::Size(16, 16), cv::Size(8, 8), cv::Size(8, 8), 9};
-    };
-
-    class Patch
-    {
-    public:
-        Patch(){};
-        ~Patch(){};
-    };
-
-}
-
-#endif /* _METRICS_H_ */