99a4e2866051f5f270d3bda4a6e3374e7113a961
[trackerpp.git] / src / Tracker.cpp
1 #include "Tracker.h"
2
3 using namespace suanzi;
4 using namespace cv;
5
6 static const int MaxLost = 5;
7
8 Tracker::Tracker(const cv::Mat& image,int id) : id(id)
9 {
10     status = TrackerStatus::Fire;
11     preStatus = TrackerStatus::Fire;
12
13     // TODO
14     // init KalmanFilter
15     this->kf.transitionMatrix = (Mat_<float>(4, 4) << 
16                                                 1, 0, 1, 0,
17                                                 0, 1, 0, 1,
18                                                 0, 0, 1, 0,
19                                                 0, 0, 0, 1);
20
21     this->kf.measurementMatrix = (Mat_<float>(2, 2) << 
22                                                 1, 0, 0, 0,
23                                                 0, 1, 0, 0);
24
25     this->kf.processNoiseCov = 1e-5 * Mat_<float>::eye(4, 4);
26     this->kf.measurementNoiseCov = 1e-1 * Mat_<float>::ones(2, 2);
27     this->kf.errorCovPost = 1. * Mat_<float>::ones(4, 4);
28
29
30 }
31
32 Tracker::~Tracker()
33 {
34     patches.clear();
35 }
36
37 void Tracker::updateState(const Mat& image)
38 {
39     preStatus = this->status;
40     int lost_age = this->age - this->last_active;
41     int active_age = this->last_active;
42
43     if (lost_age >= MaxLost){
44         status = TrackerStatus::Delete;
45     } else if (lost_age >= 1 && active_age == 1){
46         status = TrackerStatus::Delete;
47     } else if (lost_age >= 1) {
48         status = TrackerStatus::Lost;
49     }
50 }
51
52 void Tracker::addPatch(PatchPtr p)
53 {
54     this->patches.push_back(p);
55 }