Add multitracker and metrics
[trackerpp.git] / src / Metrics.h
diff --git a/src/Metrics.h b/src/Metrics.h
new file mode 100644 (file)
index 0000000..dbfca55
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef _METRICS_H_
+#define _METRICS_H_
+
+#include <string>
+#include <opencv2/opencv.hpp>
+
+namespace suanzi {
+
+class Metrics
+{
+public:
+    Metrics(const std::string& cl_path = "");
+    ~Metrics(){}
+    long int MaxCost = 100000;
+    const static int MaxPatch = 5;
+
+private:
+    cv::HOGDescriptor descriptor;
+};
+
+class Patch
+{
+public:
+    Patch(){};
+    ~Patch(){};
+};
+
+}
+
+#endif /* _METRICS_H_ */