File size: 22,411 Bytes
25ade36 | 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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | /* The Clear BSD License
*
* Copyright (c) 2025 EdgeImpulse Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted (subject to the limitations in the disclaimer
* below) provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY
* THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef EI_OBJECT_TRACKING_H
#define EI_OBJECT_TRACKING_H
#include <cstring>
#include "edge-impulse-sdk/dsp/numpy_types.h"
#include "edge-impulse-sdk/dsp/returntypes.hpp"
#include "edge-impulse-sdk/classifier/ei_model_types.h"
#include "edge-impulse-sdk/porting/ei_logging.h"
#include "edge-impulse-sdk/classifier/postprocessing/ei_postprocessing_common.h"
#include "model-parameters/model_metadata.h"
extern ei_impulse_handle_t & ei_default_impulse;
#include <vector>
#include "tinyEKF/tinyekf.hpp"
#include "alignment/ei_alignment.hpp"
float clip(float num, float min_val = -3.4028235e+38, float max_val = 3.4028235e+38) {
return std::fmax(min_val, std::fmin(num, max_val));
}
#if EI_CLASSIFIER_OBJECT_TRACKING_ENABLED == 1
typedef struct {
float keep_grace;
} ei_obj_tracking_params_t;
class ExponentialMovingAverage {
public:
ExponentialMovingAverage(int n, float gain = 2) : gain(gain / (n + 1)), ema_value(-255.0) {
}
void update(float value) {
if (ema_value == -255.0) {
ema_value = value;
} else {
ema_value = (value * gain) + (ema_value * (1 - gain));
}
}
float smoothed_value() {
return ema_value;
}
private:
float gain;
float ema_value;
};
class Trace {
public:
Trace(int id, int t, const ei_impulse_result_bounding_box_t& initial_bbox, uint32_t max_observations = 5)
: id(id), last_ground_truth_update_t(t), last_prediction(initial_bbox), max_observations(max_observations) {
if (max_observations < 2) {
EI_LOGE("%s", "max_observations needs to be at least 2 for counting");
}
trace_label = initial_bbox.label;
trace_score = initial_bbox.value;
observations.push_back(initial_bbox);
float initial_centroid[2] = { initial_bbox.x + static_cast<float>(initial_bbox.width) / 2,
initial_bbox.y + static_cast<float>(initial_bbox.height) / 2 };
float initial_width_height[2] = { static_cast<float>(initial_bbox.width),
static_cast<float>(initial_bbox.height) };
centroid_filter = new TinyEKF(initial_centroid, 8, 2);
width_height_filter = new TinyEKF(initial_width_height, 8, 2);
// Use x0, y0, x1, y1 for EMAs
xyxy_emas[0] = new ExponentialMovingAverage(this->max_observations);
xyxy_emas[1] = new ExponentialMovingAverage(this->max_observations);
xyxy_emas[2] = new ExponentialMovingAverage(this->max_observations);
xyxy_emas[3] = new ExponentialMovingAverage(this->max_observations);
}
~Trace() {
delete centroid_filter;
delete width_height_filter;
delete xyxy_emas[0];
delete xyxy_emas[1];
delete xyxy_emas[2];
delete xyxy_emas[3];
}
ei_impulse_result_bounding_box_t predict() {
fx_centroid[0] = centroid_filter->x[0];
fx_centroid[1] = centroid_filter->x[1];
fx_width_height[0] = width_height_filter->x[0];
fx_width_height[1] = width_height_filter->x[1];
centroid_filter->predict(fx_centroid);
width_height_filter->predict(fx_width_height);
ei_impulse_result_bounding_box_t p_bbox = {"", 0, 0, 0, 0, 0.0};
p_bbox.label = trace_label;
p_bbox.value = trace_score;
p_bbox.x = round(clip((centroid_filter->x[0] - width_height_filter->x[0] / 2), 0));
p_bbox.y = round(clip(centroid_filter->x[1] - width_height_filter->x[1] / 2, 0));
p_bbox.width = round(clip(width_height_filter->x[0], 0));
p_bbox.height = round(clip(width_height_filter->x[1], 0));
last_prediction = p_bbox;
EI_LOGD("predict %d %d %d %d %f\n", last_prediction.x, last_prediction.y, last_prediction.width, last_prediction.height, last_prediction.value);
return last_prediction;
}
void update(int t, const ei_impulse_result_bounding_box_t* bbox) {
if (bbox == nullptr) {
EI_LOGD("update (last prediction) %d %d %d %d %f\n", last_prediction.x, last_prediction.y, last_prediction.width, last_prediction.height, last_prediction.value);
bbox = &last_prediction;
} else {
EI_LOGD("update (ground truth prediction) %d %d %d %d %f\n", bbox->x, bbox->y, bbox->width, bbox->height, bbox->value);
last_ground_truth_update_t = t;
}
hx_centroid[0] = centroid_filter->x[0];
hx_centroid[1] = centroid_filter->x[1];
hx_width_height[0] = width_height_filter->x[0];
hx_width_height[1] = width_height_filter->x[1];
float centroid[2] = { bbox->x + static_cast<float>(bbox->width) / 2,
bbox->y + static_cast<float>(bbox->height) / 2 };
centroid_filter->update(centroid , hx_centroid);
float width_height[2] = { static_cast<float>(bbox->width),
static_cast<float>(bbox->height) };
width_height_filter->update(width_height, hx_width_height);
trace_score = bbox->value;
observations.push_back(*bbox);
while (observations.size() > max_observations) {
observations.erase(observations.begin());
}
xyxy_emas[0]->update(bbox->x);
xyxy_emas[1]->update(bbox->y);
xyxy_emas[2]->update(bbox->width);
xyxy_emas[3]->update(bbox->height);
}
std::tuple<int, int, int, int> last_centroid_segment() const {
if (observations.size() < 2) {
return {};
}
auto obs_t_minus1 = observations[observations.size() - 2];
auto obs_t_0 = observations.back();
return {obs_t_minus1.x + static_cast<float>(obs_t_minus1.width) / 2,
obs_t_minus1.y + static_cast<float>(obs_t_minus1.height) / 2,
obs_t_0.x + static_cast<float>(obs_t_0.width) / 2,
obs_t_0.y + static_cast<float>(obs_t_0.height) / 2};
}
const ei_impulse_result_bounding_box_t* last_observation() const {
if (observations.empty()) {
return nullptr;
}
return &observations.back();
}
ei_impulse_result_bounding_box_t smoothed_last_observation() const {
ei_impulse_result_bounding_box_t bbox = {"", 0, 0, 0, 0, 0.0};
if (observations.empty()) {
return bbox;
}
bbox.x = round(xyxy_emas[0]->smoothed_value());
bbox.y = round(xyxy_emas[1]->smoothed_value());
bbox.width = round(xyxy_emas[2]->smoothed_value());
bbox.height = round(xyxy_emas[3]->smoothed_value());
bbox.label = trace_label;
bbox.value = trace_score;
return bbox;
}
void debug_output() const {
#if EI_LOG_LEVEL == EI_LOG_LEVEL_DEBUG
// output debug info, C-style
ei_printf("Trace %d:\n", id);
ei_printf(" Last ground truth update: %d\n", last_ground_truth_update_t);
ei_printf(" Last prediction: %d %d %d %d %f\n", last_prediction.x, last_prediction.y, last_prediction.width, last_prediction.height, last_prediction.value);
ei_printf(" Observations:\n");
for (const auto& obs : observations) {
ei_printf("%d %d %d %d %f\n", obs.x, obs.y, obs.width, obs.height, obs.value);
}
#endif
}
uint32_t id;
uint32_t last_ground_truth_update_t;
ei_impulse_result_bounding_box_t last_prediction;
private:
std::vector<ei_impulse_result_bounding_box_t> observations;
TinyEKF* centroid_filter;
TinyEKF* width_height_filter;
uint32_t max_observations;
float fx_centroid[2];
float fx_width_height[2];
float hx_centroid[2];
float hx_width_height[2];
const char* trace_label;
float trace_score;
ExponentialMovingAverage *xyxy_emas[4];
};
class Tracker {
public:
Tracker (uint32_t keep_grace = 5, uint16_t max_observations = 5, float threshold = 0.5, bool use_iou = true)
: keep_grace(keep_grace),
max_observations(max_observations),
alignment(threshold, use_iou) {
trace_seq_id = 0;
t = 0;
}
~Tracker() {
for (auto trace : open_traces) {
delete trace;
}
for (auto trace : closed_traces) {
delete trace;
}
}
std::vector<Trace*>open_traces;
std::vector<Trace*>closed_traces;
std::vector<ei_object_tracking_trace_t> object_tracking_output;
/**
* Process new detections.
* @param detections Bounding boxes, this vector might be reordered.
*/
void process_new_detections(std::vector<ei_impulse_result_bounding_box_t> detections) {
// sort detections by x, y, width, height, label (same in Python code, see ei_tracking/tracking.py)
// so it doesn't matter in what order we pass in the detections
std::sort(detections.begin(), detections.end(), [](const ei_impulse_result_bounding_box_t& a, const ei_impulse_result_bounding_box_t& b) {
if (a.x != b.x) return a.x < b.x;
if (a.y != b.y) return a.y < b.y;
if (a.width != b.width) return a.width < b.width;
if (a.height != b.height) return a.height < b.height;
return std::strcmp(a.label, b.label) < 0;
});
// firstly try an alignment with last observations...
std::vector<ei_impulse_result_bounding_box_t> last_obs_bboxes;
for (auto trace : open_traces) {
last_obs_bboxes.push_back(*trace->last_observation());
}
std::vector<std::tuple<int, int, float>> last_obs_matches = alignment.align(last_obs_bboxes, detections);
float last_obs_cost = 0;
for (auto last_obs_match : last_obs_matches) {
EI_LOGD("last_obs_match %d %d %f\n", std::get<0>(last_obs_match), std::get<1>(last_obs_match), std::get<2>(last_obs_match));
last_obs_cost += std::get<2>(last_obs_match);
}
EI_LOGD("last_obs_cost %f\n", last_obs_cost);
// ... then with the kalman filter predictions
std::vector<ei_impulse_result_bounding_box_t> predicted_bboxes;
for (auto trace : open_traces) {
predicted_bboxes.push_back(trace->predict());
EI_LOGD("predicted %d %d %d %d %f\n", trace->last_prediction.x, trace->last_prediction.y, trace->last_prediction.width, trace->last_prediction.height, trace->last_prediction.value);
}
std::vector<std::tuple<int, int, float>> predicted_matches = alignment.align(predicted_bboxes, detections);
float predicted_cost = 0;
for (auto predicted_match : predicted_matches) {
EI_LOGD("predicted_match %d %d %f\n", std::get<0>(predicted_match), std::get<1>(predicted_match), std::get<2>(predicted_match));
predicted_cost += std::get<2>(predicted_match);
}
EI_LOGD("predicted_cost %f\n", predicted_cost);
// and use whichever matching set is better
std::vector<std::tuple<int, int, float>> matches;
if (last_obs_cost < predicted_cost) {
EI_LOGD("using last_obs_matches matches\n");
matches = last_obs_matches;
}
else {
EI_LOGD("using predicted_matches matches\n");
matches = predicted_matches;
}
// assume all detections are unassigned and will becomes new tracks
// until we see otherwise ( i.e. they match an existing track )∂ //
std::set<uint16_t>unassigned_detection_idxs;
for (size_t i = 0; i < detections.size(); i++) {
unassigned_detection_idxs.insert(i);
}
// keep track of open traces idxs that haven't been updated
std::set<uint16_t>open_traces_idxs_to_be_updated;
for (size_t i = 0; i < open_traces.size(); i++) {
open_traces_idxs_to_be_updated.insert(i);
}
// update existing traces with any matches
for (size_t i = 0; i < matches.size(); i++) {
uint32_t trace_idx = std::get<0>(matches[i]);
uint32_t detection_idx = std::get<1>(matches[i]);
EI_LOGD("t_idx=%u d_idx=%u iou=%.6f\n", trace_idx, detection_idx, std::get<2>(matches[i]));
Trace *trace = open_traces[trace_idx];
open_traces_idxs_to_be_updated.erase(trace_idx);
trace->update(t, &detections[detection_idx]);
unassigned_detection_idxs.erase(detection_idx);
}
for (auto detection_idx : unassigned_detection_idxs ) {
EI_LOGD("unassigned detection %d %d %d %d %d %f => starting new trace\n", detection_idx, detections[detection_idx].x, detections[detection_idx].y, detections[detection_idx].width, detections[detection_idx].height, detections[detection_idx].value);
open_traces.push_back(new Trace(trace_seq_id, t, detections[detection_idx], max_observations));
trace_seq_id += 1;
}
std::vector<Trace*>traces_tmp;
for (auto trace : open_traces) {
EI_LOGD("grace checking trace %d at t=%d (trace.last_ground_truth_update_t=%d)\n", trace->id, t, trace->last_ground_truth_update_t);
uint32_t time_since_last_update = t - trace->last_ground_truth_update_t;
if (time_since_last_update > keep_grace) {
// been too long since last update, close it
EI_LOGD("closing trace %d\n", trace->id);
closed_traces.push_back(trace);
}
else {
if (trace->last_ground_truth_update_t != t) {
// wasn't match this step, so do rollout of filters
EI_LOGD("self rollout of trace %d\n", trace->id);
trace->update(t, nullptr);
}
EI_LOGD("trace %d still alive\n", trace->id);
traces_tmp.push_back(trace);
}
}
open_traces = traces_tmp;
object_tracking_output.clear();
for (auto trace : open_traces) {
ei_object_tracking_trace_t trace_result = { 0 };
trace_result.id = trace->id;
trace_result.last_ground_truth_update_t = trace->last_ground_truth_update_t;
trace_result.label = trace->last_prediction.label;
trace_result.x = trace->last_prediction.x;
trace_result.y = trace->last_prediction.y;
trace_result.width = trace->last_prediction.width;
trace_result.height = trace->last_prediction.height;
trace_result.last_centroid_segment = trace->last_centroid_segment();
trace_result.value = trace->last_prediction.value;
object_tracking_output.push_back(trace_result);
}
t += 1;
}
void set_threshold(float threshold) {
alignment.threshold = threshold;
}
float get_threshold() {
return alignment.threshold;
}
uint32_t keep_grace;
uint16_t max_observations;
private:
uint32_t trace_seq_id;
uint32_t t;
JonkerVolgenantAlignment alignment;
std::vector<std::string> seen_labels;
};
EI_IMPULSE_ERROR init_object_tracking(ei_impulse_handle_t *handle, void** state, void *config)
{
//const ei_impulse_t *impulse = handle->impulse;
const ei_object_tracking_config_t *ei_object_tracking_config = (ei_object_tracking_config_t*)config;
// Allocate the object counter
Tracker *object_tracker = new Tracker(ei_object_tracking_config->keep_grace,
ei_object_tracking_config->max_observations,
ei_object_tracking_config->threshold,
ei_object_tracking_config->use_iou);
if (!object_tracker) {
return EI_IMPULSE_OUT_OF_MEMORY;
}
// Store the object counter state
*state = (void*)object_tracker;
return EI_IMPULSE_OK;
}
EI_IMPULSE_ERROR deinit_object_tracking(void* state, void *config)
{
Tracker *object_tracker = (Tracker *)state;
if (object_tracker) {
delete object_tracker;
}
return EI_IMPULSE_OK;
}
EI_IMPULSE_ERROR process_object_tracking(ei_impulse_handle_t *handle,
uint32_t block_index,
uint32_t input_block_id,
ei_impulse_result_t *result,
void *config_ptr,
void *state)
{
Tracker *object_tracker = (Tracker *)state;
const ei_object_tracking_config_t *ei_object_tracking_config = (ei_object_tracking_config_t*)config_ptr;
if((void *)object_tracker != NULL) {
ei_impulse_result_bounding_box_t *bbs = result->bounding_boxes;
uint32_t bbs_num = result->bounding_boxes_count;
std::vector<ei_impulse_result_bounding_box_t> detections(bbs, bbs + bbs_num);
object_tracker->keep_grace = ei_object_tracking_config->keep_grace;
object_tracker->max_observations = ei_object_tracking_config->max_observations;
object_tracker->set_threshold(ei_object_tracking_config->threshold);
object_tracker->process_new_detections(detections);
result->postprocessed_output.object_tracking_output.open_traces = object_tracker->object_tracking_output.data();
result->postprocessed_output.object_tracking_output.open_traces_count = object_tracker->object_tracking_output.size();
}
else {
EI_LOGW("process_object_tracking: object_tracker is NULL, did you forget to call run_classifier_init()?\n");
}
return EI_IMPULSE_OK;
}
EI_IMPULSE_ERROR display_object_tracking(ei_impulse_result_t *result,
void *config)
{
// print the open traces
ei_printf("Open traces:\r\n");
for (uint32_t i = 0; i < result->postprocessed_output.object_tracking_output.open_traces_count; i++) {
ei_object_tracking_trace_t trace = result->postprocessed_output.object_tracking_output.open_traces[i];
ei_printf(" Trace %d: %s [ x: %u, y: %u, width: %u, height: %u ]\r\n",
trace.id,
trace.label,
trace.x,
trace.y,
trace.width,
trace.height);
}
return EI_IMPULSE_OK;
}
// Removed object tracking parameter functions (update/read the postprocessing block config directly)
template <typename T = void>
[[deprecated("set_post_process_params(ei_impulse_handle_t*, ei_object_tracking_config_t*) has been removed in favor of updating the object tracking postprocessing block config")]]
EI_IMPULSE_ERROR set_post_process_params(ei_impulse_handle_t* handle, ei_object_tracking_config_t* params) {
static_assert(ei_dependent_false_v<T>::value,
"set_post_process_params(ei_impulse_handle_t*, ei_object_tracking_config_t*) has been removed in favor of updating the object tracking postprocessing block config");
return EI_IMPULSE_CALL_SIGNATURE_REMOVED;
}
template <typename T = void>
[[deprecated("get_post_process_params(ei_impulse_handle_t*, ei_object_tracking_config_t*) has been removed in favor of reading the object tracking postprocessing block config")]]
EI_IMPULSE_ERROR get_post_process_params(ei_impulse_handle_t* handle, ei_object_tracking_config_t* params) {
static_assert(ei_dependent_false_v<T>::value,
"get_post_process_params(ei_impulse_handle_t*, ei_object_tracking_config_t*) has been removed in favor of reading the object tracking postprocessing block config");
return EI_IMPULSE_CALL_SIGNATURE_REMOVED;
}
template <typename T = void>
[[deprecated("set_post_process_params(ei_object_tracking_config_t*) has been removed in favor of updating the object tracking postprocessing block config")]]
EI_IMPULSE_ERROR set_post_process_params(ei_object_tracking_config_t *params) {
static_assert(ei_dependent_false_v<T>::value,
"set_post_process_params(ei_object_tracking_config_t*) has been removed in favor of updating the object tracking postprocessing block config");
return EI_IMPULSE_CALL_SIGNATURE_REMOVED;
}
template <typename T = void>
[[deprecated("get_post_process_params(ei_object_tracking_config_t*) has been removed in favor of reading the object tracking postprocessing block config")]]
EI_IMPULSE_ERROR get_post_process_params(ei_object_tracking_config_t *params) {
static_assert(ei_dependent_false_v<T>::value,
"get_post_process_params(ei_object_tracking_config_t*) has been removed in favor of reading the object tracking postprocessing block config");
return EI_IMPULSE_CALL_SIGNATURE_REMOVED;
}
#endif // EI_CLASSIFIER_OBJECT_TRACKING_ENABLED
#endif // EI_OBJECT_TRACKING_H |