improve install script
[trackerpp.git] / include / Metrics.h
index c991d9f..2aa7939 100644 (file)
@@ -8,7 +8,8 @@
 namespace suanzi {
 
     TK_DECLARE_PTR(Metrics);
-    TK_DECLARE_PTR(Patch);
+    //TK_DECLARE_PTR(Patch);
+//    struct Patch;
     class Metrics
     {
     public:
@@ -16,18 +17,20 @@ namespace suanzi {
         ~Metrics(){}
         const static long int MaxCost = 100000;
         const static int MaxPatch = 5;
-
+        //double distance()
     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(){};
-    };
-
+//    struct Patch
+//    {
+//        // bb_ltrb
+//        //
+//        // image_crop
+//        cv::Mat image_crop;
+//        //
+//        // features
+//    };
 }
 
 #endif /* _METRICS_H_ */