#include <RawTracklets.hpp>
Public Types | |
enum | TrackingStatus : std::int32_t { TrackingStatus::NEW, TrackingStatus::TRACKED, TrackingStatus::LOST, TrackingStatus::REMOVED } |
Public Member Functions | |
DEPTHAI_SERIALIZE (Tracklet, roi, id, label, age, status, srcImgDetection, spatialCoordinates) | |
Public Attributes | |
std::int32_t | age = 0 |
std::int32_t | id = 0 |
std::int32_t | label = 0 |
Rect | roi |
Point3f | spatialCoordinates |
ImgDetection | srcImgDetection |
TrackingStatus | status = TrackingStatus::LOST |
Tracklet structure
Contains tracklets from object tracker output.
Definition at line 18 of file RawTracklets.hpp.
|
strong |
Definition at line 19 of file RawTracklets.hpp.
dai::Tracklet::DEPTHAI_SERIALIZE | ( | Tracklet | , |
roi | , | ||
id | , | ||
label | , | ||
age | , | ||
status | , | ||
srcImgDetection | , | ||
spatialCoordinates | |||
) |
std::int32_t dai::Tracklet::age = 0 |
Number of frames it is being tracked for.
Definition at line 41 of file RawTracklets.hpp.
std::int32_t dai::Tracklet::id = 0 |
Tracklet's ID.
Definition at line 33 of file RawTracklets.hpp.
std::int32_t dai::Tracklet::label = 0 |
Tracklet's label ID.
Definition at line 37 of file RawTracklets.hpp.
Rect dai::Tracklet::roi |
Tracked region of interest.
Definition at line 29 of file RawTracklets.hpp.
Point3f dai::Tracklet::spatialCoordinates |
Spatial coordinates of tracklet.
Definition at line 54 of file RawTracklets.hpp.
ImgDetection dai::Tracklet::srcImgDetection |
Image detection that is tracked.
Definition at line 50 of file RawTracklets.hpp.
TrackingStatus dai::Tracklet::status = TrackingStatus::LOST |
Status of tracklet.
Definition at line 45 of file RawTracklets.hpp.