Add multitracker and metrics
[trackerpp.git] / src / Metrics.h
1 #ifndef _METRICS_H_
2 #define _METRICS_H_
3
4 #include <string>
5 #include <opencv2/opencv.hpp>
6
7 namespace suanzi {
8
9 class Metrics
10 {
11 public:
12     Metrics(const std::string& cl_path = "");
13     ~Metrics(){}
14     long int MaxCost = 100000;
15     const static int MaxPatch = 5;
16
17 private:
18     cv::HOGDescriptor descriptor;
19 };
20
21 class Patch
22 {
23 public:
24     Patch(){};
25     ~Patch(){};
26 };
27
28 }
29
30 #endif /* _METRICS_H_ */