forked from stephanecharette/DarkHelp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDarkHelpPositionTracker.cpp
289 lines (221 loc) · 6.94 KB
/
DarkHelpPositionTracker.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/* DarkHelp - C++ helper class for Darknet's C API.
* Copyright 2019-2024 Stephane Charette <[email protected]>
* MIT license applies. See "license.txt" for details.
*/
#include "DarkHelpPositionTracker.hpp"
DarkHelp::PositionTracker::Obj & DarkHelp::PositionTracker::Obj::clear()
{
oid = 0;
fids_and_rects .clear();
classes .clear();
return *this;
}
bool DarkHelp::PositionTracker::Obj::empty() const
{
return oid == 0 or fids_and_rects.empty();
}
size_t DarkHelp::PositionTracker::Obj::first_seen_frame_id() const
{
if (fids_and_rects.empty())
{
throw std::logic_error("cannot get the first frame ID since the tracking map for this object is empty");
}
return fids_and_rects.begin()->first;
}
size_t DarkHelp::PositionTracker::Obj::last_seen_frame_id() const
{
if (fids_and_rects.empty())
{
throw std::logic_error("cannot get the last frame ID since the tracking map for this object is empty");
}
return fids_and_rects.rbegin()->first;
}
cv::Rect DarkHelp::PositionTracker::Obj::rect() const
{
if (fids_and_rects.empty())
{
throw std::logic_error("cannot get the recentagle since the tracking map for this object is empty");
}
return fids_and_rects.rbegin()->second;
}
cv::Point DarkHelp::PositionTracker::Obj::center() const
{
const auto r = rect();
const cv::Point p(r.x + r.width / 2, r.y + r.height / 2);
return p;
}
cv::Size DarkHelp::PositionTracker::Obj::size() const
{
return rect().size();
}
DarkHelp::PositionTracker::PositionTracker() :
most_recent_object_id(0),
most_recent_frame_id(0),
age_of_objects_before_deletion(10),
maximum_number_of_frames_per_object(90),
maximum_distance_to_consider(100.0)
{
clear();
return;
}
DarkHelp::PositionTracker::~PositionTracker()
{
return;
}
DarkHelp::PositionTracker & DarkHelp::PositionTracker::clear()
{
maximum_distance_to_consider = 100.0;
maximum_number_of_frames_per_object = 90;
age_of_objects_before_deletion = 10;
most_recent_object_id = 0;
most_recent_frame_id = 0;
objects.clear();
return *this;
}
DarkHelp::PositionTracker & DarkHelp::PositionTracker::add(DarkHelp::PredictionResults & results)
{
most_recent_frame_id ++;
if (results.size() > 0)
{
process(most_recent_frame_id, results);
}
remove_old_objects();
return *this;
}
const DarkHelp::PositionTracker::Obj & DarkHelp::PositionTracker::get(const size_t oid) const
{
for (const auto & obj : objects)
{
if (obj.oid == oid)
{
return obj;
}
}
throw std::invalid_argument("object #" + std::to_string(oid) + " not found");
}
DarkHelp::PositionTracker & DarkHelp::PositionTracker::process(const size_t frame_id, DarkHelp::PredictionResults & results)
{
std::set<size_t> previous_oids_we_already_matched;
for (auto & prediction : results)
{
Obj new_obj;
new_obj.fids_and_rects[frame_id] = prediction.rect;
for (auto iter = prediction.all_probabilities.begin(); iter != prediction.all_probabilities.end(); iter ++)
{
// where the key is the class, and val is the probability from 0.0 to 1.0
const auto & key = iter->first;
const auto & val = iter->second;
if (val >= 0.2)
{
new_obj.classes.insert(key);
}
}
// compare the centroid of every object we're tracking against this one to see if we have a match
std::map<double, Objects::iterator> distances;
for (auto iter = objects.begin(); iter != objects.end(); iter ++)
{
const auto & old_obj = *iter;
const auto & old_oid = old_obj.oid;
if (previous_oids_we_already_matched.count(old_oid))
{
// skip this one since we already found a match for it
continue;
}
// remember the distance between the new object and this old one
const auto distance = cv::norm(new_obj.center() - old_obj.center());
distances[distance] = iter;
}
// start with the smallest distances and see if we can find a match
for (auto iter = distances.begin(); iter != distances.end(); iter ++)
{
const auto distance = iter->first;
if (distance > maximum_distance_to_consider)
{
// object is too far, stop looking for matches
break;
}
auto & old_obj = *iter->second;
if (old_obj.classes.count(prediction.best_class) == 0)
{
// object is not the correct class, keep looking
continue;
}
new_obj.oid = old_obj.oid;
old_obj.fids_and_rects[frame_id] = prediction.rect;
old_obj.classes.insert(new_obj.classes.begin(), new_obj.classes.end());
// std::cout << "near match: oid=" << new_obj.oid << " center=" << new_obj.center() << " distance=" << distance << std::endl;
break;
}
// anything that remains without a OID is a new object
if (new_obj.oid == 0)
{
new_obj.oid = ++ most_recent_object_id;
objects.push_back(new_obj);
// std::cout << "NEW OID: oid=" << new_obj.oid << " center=" << new_obj.center() << std::endl;
}
// update the OID in the DarkHelp prediction results
prediction.object_id = new_obj.oid;
previous_oids_we_already_matched.insert(new_obj.oid);
}
return *this;
}
DarkHelp::PositionTracker & DarkHelp::PositionTracker::remove_old_objects()
{
// delete old entries that have not been updated in a while
if (age_of_objects_before_deletion > 0 and most_recent_frame_id > age_of_objects_before_deletion)
{
auto iter = objects.begin();
while (iter != objects.end())
{
const auto & obj = *iter;
const auto & last_seen = obj.last_seen_frame_id();
if (most_recent_frame_id - last_seen > age_of_objects_before_deletion)
{
iter = objects.erase(iter);
continue;
}
iter ++;
}
}
if (maximum_number_of_frames_per_object >= 10)
{
for (auto & obj : objects)
{
if (obj.fids_and_rects.size() > maximum_number_of_frames_per_object)
{
// do not delete the very first entry, so we know exactly where an object appeared
auto iter1 = obj.fids_and_rects.upper_bound(obj.first_seen_frame_id());
// keep the last 40 or so frames in case the user wants to draw a tail
auto iter2 = obj.fids_and_rects.lower_bound(most_recent_frame_id - maximum_number_of_frames_per_object / 2);
obj.fids_and_rects.erase(iter1, iter2);
}
}
}
return *this;
}
std::ostream & DarkHelp::operator<<(std::ostream & os, const DarkHelp::PositionTracker::Obj & obj)
{
const size_t first_fid = obj.first_seen_frame_id();
const size_t last_fid = obj.last_seen_frame_id();
os << "oid=" << obj.oid
<< " frames=" << obj.fids_and_rects.size()
<< " first=" << first_fid
<< " last=" << last_fid
<< " missing=" << (1 + last_fid - first_fid - obj.fids_and_rects.size())
<< " center=" << obj.center()
<< " size=" << obj.size()
;
return os;
}
std::ostream & DarkHelp::operator<<(std::ostream & os, const DarkHelp::PositionTracker & tracker)
{
os << "Position Tracker:" << std::endl
<< "-> most recent frame .... " << tracker.most_recent_frame_id << std::endl
<< "-> most recent object ... " << tracker.most_recent_object_id << std::endl
<< "-> tracked objects ...... " << tracker.objects.size();
for (const auto & obj : tracker.objects)
{
os << std::endl << "-> " << obj;
}
return os;
}