MediaX v1.1.2 [7554dd3]
Video streaming for military vehicles
Loading...
Searching...
No Matches
correlation_tracker.h
1#ifndef CVTRACK_CORRELATION_TRACKER_H_
2#define CVTRACK_CORRELATION_TRACKER_H_
3
4#include "tracked_object.h"
5
6namespace cvtrack
7{
8
10 {
11 public:
14
15 void Init(const BoundingBox &box, const uint8_t *frame, int width, int height, int channels);
16 void Update(const uint8_t *frame, int width, int height, int channels, BoundingBox &out_box);
17
18 private:
19 // Placeholder for the complex state of the Correlation tracker
22 };
23
24} // namespace cvtrack
25
26#endif // CVTRACK_CORRELATION_TRACKER_H_
Definition correlation_tracker.h:10
Definition tracked_object.h:11
Definition correlation_tracker.cc:12