Hello Everyone!
I am currently running the my-detection.py file that runs the ssd-mobilenet-v2 for a captstone project.
I want to add logic to run a seperate function when a human is detected.
Is their any way to access the labels in real time while inside the:
while display.IsStreaming():
img = camera.Capture()
detections = net.Detect(img)
### Here is where I would like to have logic to run a function if detections==human
display.Render(img)
display.setStatus("...")
as the code above shows, I want to acess the Human label and be able to run a separate function while inside of that loop.
More info:
This is the same code that is found under the jetson-inference repository.