-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.cpp
109 lines (79 loc) · 3.15 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include <iostream>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include "KalmanFilter.h"
#include "Tracker.h"
using namespace std;
using namespace cv;
bool mouseDown = false;
void CallBackFunc(int event, int x, int y, int flags, void* userdata)
{
if ( event == EVENT_LBUTTONDOWN ) { mouseDown = true; }
if ( event == EVENT_LBUTTONUP ) { mouseDown = false; }
if ( event == EVENT_MOUSEMOVE && mouseDown )
{
*((int*) userdata) = x;
*( ( (int*) userdata ) + 1) = y;
}
if ( !mouseDown )
{
*((int*) userdata) = -1;
*( ( (int*) userdata ) + 1) = -1;
}
}
int main()
{
std::cout << "###############################" << std::endl;
std::cout << "press q to quit" << std::endl;
std::cout << "left click and hold mouse on image to create additional measurement" << std::endl;
// 4-dimensional state, 2-dimensional measurements
typedef Tracker<4, 2> GNNTracker;
GNNTracker tracker;
typedef GNNTracker::MeasurementSpaceVector Measurement;
typedef GNNTracker::Measurements Measurements;
namedWindow( "Kalman Demo", WINDOW_AUTOSIZE );
int * mouse = new int[2]();
mouse[0] = mouse[1] = -1;
setMouseCallback("Kalman Demo",CallBackFunc, mouse);
int k = 0;
size_t step = 0;
while ( k != 1048689 ) //'q'
{
Mat img(480, 640, CV_8UC3, Scalar(255, 255, 255));
Measurements m;
// build some virtual measurements
m.emplace_back(Measurement(320 + 120 * std::sin(step * .05), 240 + 100 * std::cos(step * .05)));
m.emplace_back(Measurement(240 - 120 * std::sin(step * .05), 240 + 100 * std::cos(step * .05)));
m.emplace_back(Measurement(320 - 120 * std::sin(step * .05), 240 - 200 * std::cos(step * .05)));
// get measurement from mouse coordinates
if (mouse[0] != -1 && mouse[1] != -1)
m.emplace_back(Measurement(mouse[0], mouse[1]));
step++;
for ( const auto & x : m )
{
const int r = 5;
// draw measurement
circle(img, Point(x(0), x(1)), 2*r, Scalar(0, 0, 0));
line(img, Point(x(0) - r, x(1) - r), Point(x(0) + r, x(1) + r), Scalar(0, 0, 0) );
line(img, Point(x(0) - r, x(1) + r), Point(x(0) + r, x(1) - r), Scalar(0, 0, 0) );
}
tracker.track(m);
for ( const auto & filter : tracker.filters() )
{
const GNNTracker::StateSpaceVector s = filter.state();
const GNNTracker::StateSpaceVector p = filter.prediction();
// draw filter position
circle(img, Point(s(0), s(1)), 5, Scalar(0, 0, 255));
// draw filter prediction
circle(img, Point(p(0), p(1)), 5, Scalar(255, 0, 0));
// draw filter velocity (scaled)
line(img, Point(s(0), s(1)), Point(s(0) + 5 * s(2), s(1) + 5 * s(3)), Scalar(0, 255, 0));
stringstream id;
id << filter.id();
putText(img, id.str(), cv::Point2i(s(0) + 10, s(1)), cv::FONT_HERSHEY_PLAIN, 1, cv::Scalar(0, 0, 0));
}
imshow( "Kalman Demo", img );
k = cv::waitKey(30);
}
return 0;
}