-
Notifications
You must be signed in to change notification settings - Fork 516
Description
Checklist
- Checked the issue tracker for similar issues to ensure this is not a duplicate.
- Described the feature in detail and justified the reason for the request.
- Provided specific use cases and examples.
Feature description
Taking into consideration the following code :
auto model = new PedestrianDetect();
auto detect = new WhoDetectAppLCD({{255, 0, 0}});
detect->set_cam(cam);
detect->set_lcd(lcd);
detect->set_model(model);
// detect->set_fps(5);
detect->run();
We can only set the cam,model,lcd and run the detect-->run task. But we are missing the functionallity of retrieving the detected results on the image.
Use cases
Expand the API so we can get the detected results on the image it can be callback function that can return the detected results on an image frame. With this we will be able to do further processing with that data like sending it to a server or something like that. With the current implementation we are only limited to display the detected results on the image.
Alternatives
No response
Additional context
No response