Visualize more information of each object

Can I extend the visualization to include more detailed information about each detected object (such as real name, occupation, and birthday) which keep track like the ID information, please help me

Hello @NgqvngVinh

Our SDK can only handle detection, and track the detected objects across frames by assigning an ID to them. That is the only information it retains, only for the duration of the session.
You can do what you want with the detected objects, and if you have a means to identify them further, you can store and display that data along with our detection ID I think.

One way would be to use our Custom Object Detection to fill in a CustomBoxObjectData from an AI model you trained. Then you could probably pair the label to your desired data, parse it, and display it.