X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;ds=sidebyside;f=src%2FMetrics.h;fp=src%2FMetrics.h;h=dbfca558807a6b47c760edaa97768a9d091ac67a;hb=5675c1a74ffcb95725eb11463e51cfebbc88a15e;hp=0000000000000000000000000000000000000000;hpb=b3feccd1ee1186c37b39844dc566d39aedaa54ed;p=trackerpp.git diff --git a/src/Metrics.h b/src/Metrics.h new file mode 100644 index 0000000..dbfca55 --- /dev/null +++ b/src/Metrics.h @@ -0,0 +1,30 @@ +#ifndef _METRICS_H_ +#define _METRICS_H_ + +#include +#include + +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_ */