oraday
September 1, 2023, 6:17am
1
I’m following the examples in the hello ai world of object detection and tracking.
I would like to display the track id on the bounding box.
Is this possible?
I went over the API documentation of detectNet and saw flags for ‘box’, ‘lines’, ‘labels’, ‘conf’, ‘none’.
How can also overlay also tracking id (or any other info?)
Thanks!
Hi @oraday , you can use the “track” or “tracking” flag to the overlay option, in combination with the others that you listed above. The tracking info will only show up for detections that have an active tracking ID.
oraday
September 4, 2023, 4:50am
5
Thank you Dusty.
Is it possible to overlay also custom data (in addition to the flags options)?
Thanks!
@oraday to do that, I’d either edit the detectNet::Overlay()
source code, or make your own overlay function in Python using these CUDA drawing functions (plus the jetson_utils.cudaFont that you can see used in imagenet.py )
system
Closed
September 27, 2023, 2:26am
8
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.