X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;ds=sidebyside;f=include%2FDetector.h;h=0d4c6b10f3053fcd2b408dcb27123e2a2fbd1d5f;hb=HEAD;hp=c1c5a9b56287cf26a7bd06fb353506edccd9d9e8;hpb=48adce31a0ffdb3757ee1be8a63ce7e769e87deb;p=trackerpp.git diff --git a/include/Detector.h b/include/Detector.h index c1c5a9b..0d4c6b1 100644 --- a/include/Detector.h +++ b/include/Detector.h @@ -15,7 +15,7 @@ namespace suanzi { Detector(); virtual ~Detector(); // TODO - unsigned int detect(const cv::Mat& frame, Detection* detections){return 1;} + unsigned int detect(const cv::Mat& frame, Detection* detections){return 2;} }; struct Detection @@ -25,10 +25,10 @@ namespace suanzi { // 检测目标的分数,可以不填 float score; // 检测目标的坐标,包括物体中心的x、y坐标,物体的高和宽 - unsigned int center_x; - unsigned int center_y; - unsigned int height; - unsigned int width; + unsigned int center_x = 100; + unsigned int center_y = 100; + unsigned int height = 200; + unsigned int width = 200; // 检测目标的特征向量 unsigned int feature_size; float * feature;