improve install script
[trackerpp.git] / include / Metrics.h
index 3da8014..2aa7939 100644 (file)
@@ -9,7 +9,7 @@ namespace suanzi {
 
     TK_DECLARE_PTR(Metrics);
     //TK_DECLARE_PTR(Patch);
-    struct Patch;
+//    struct Patch;
     class Metrics
     {
     public:
@@ -17,25 +17,20 @@ namespace suanzi {
         ~Metrics(){}
         const static long int MaxCost = 100000;
         const static int MaxPatch = 5;
-        void similarity(const Patch& p1, const Patch& p2);
-
-
+        //double distance()
     private:
         cv::HOGDescriptor descriptor = {cv::Size(64, 128), cv::Size(16, 16), cv::Size(8, 8), cv::Size(8, 8), 9};
     };
 
-    struct Patch
-    {
-        // bb_ltrb
-        
-        //
-        // image_crop
-        cv::Mat image_crop;
-        //
-        // features
-
-    };
-
+//    struct Patch
+//    {
+//        // bb_ltrb
+//        //
+//        // image_crop
+//        cv::Mat image_crop;
+//        //
+//        // features
+//    };
 }
 
 #endif /* _METRICS_H_ */