Hello,
I have callback.py currently working, but I have 2 questions
1. how do I extract label_str information when there are detections ?
def onNn(nn_packet, decoded_data):
if nn_packet.detections:
for nn_detection in nn_packet.detections:
print(dir(nn_detection))
print(nn_detection.label)
print(nn_detection.confidence)
it appears the label_str is not set in the either the nn_packet or the decoded one
2. Is there any class definitions or examples for useful information from the callback parameters ?