separate pytwrpper from predictorWrappery
[trackerpp.git] / src / Tracker.cpp
index 79fd941..098a24e 100644 (file)
@@ -1,11 +1,76 @@
 #include "Tracker.h"
 
 using namespace suanzi;
+using namespace cv;
+using namespace std;
 
-Tracker::Tracker()
+static const int MaxLost = 5;
+
+Tracker::Tracker(const cv::Mat& image, const Detection& detection, int id) 
+: id(id)
 {
+    status = TrackerStatus::Fire;
+    preStatus = TrackerStatus::Fire;
+
+    // TODO: Kalman filter
+    KF.transitionMatrix = (Mat_<double>(4, 4) << 
+                                                1, 0, 1, 0,
+                                                0, 1, 0, 1,
+                                                0, 0, 1, 0,
+                                                0, 0, 0, 1);
+
+    KF.measurementMatrix = (Mat_<double>(2, 2) << 
+                                                1, 0, 0, 0,
+                                                0, 1, 0, 0);
+
+    KF.processNoiseCov = 1e-5 * Mat_<double>::eye(4, 4);
+    KF.measurementNoiseCov = 1e-1 * Mat_<double>::ones(2, 2);
+    KF.errorCovPost = 1. * Mat_<double>::ones(4, 4);
+    //this->kf.statePre = 0.1 * Matx_<int, 4, 1>::randn(4, 1);
+    //??? TODO
+    randn(KF.statePre, Scalar::all(0), Scalar::all(0.1));
+    KF.statePost = (Mat_<double>(4, 1) << detection.center_x, detection.center_y, 0, 0);
 }
 
 Tracker::~Tracker()
 {
+    patches.clear();
+}
+
+void Tracker::updateState(const Mat& image)
+{
+    preStatus = this->status;
+    int lost_age = this->age - this->last_active;
+    int active_age = this->last_active;
+
+    if (lost_age >= MaxLost){
+        status = TrackerStatus::Delete;
+    } else if (lost_age >= 1 && active_age == 1){
+        status = TrackerStatus::Delete;
+    } else if (lost_age >= 1) {
+        status = TrackerStatus::Lost;
+    }
+}
+
+void Tracker::addPatch(PatchPtr p)
+{
+    patches.insert(patches.begin(), p);
+    if (patches.size() > MaxPatch){
+        patches.erase(patches.end());
+    }
+}
+
+void Tracker::correct(const cv::Mat& image, const Detection& detection)
+{
+    // detection.center_x,   detection.center_y, 
+    // KF.correct(detect.center_x, detect.center_y);
+    preStatus = status;
+    status = TrackerStatus::Active;
+    last_active = age;
+}
+
+void Tracker::predict()
+{
+    age++;
+    //detection = KF.predict();
 }