Hey, first of all, thanks for doing this in Python!
I'm trying to replicate this in my Jetson NX with a couple of changes:
- My pgie model is the 4-classes model used on python-apps
- My sgie model detects mask/not_mask so it operates on people (class "person")
- I do not need a ROI in my case nor the OCR model for LP Text extraction...
So I made the changes needed on the code and to my config files. I can see the mask/not mask Bounding Boxes in my display, but I can't get ahold of the metadata inside the code. This is: obj_meta.classifier_meta_list is always None.
I have changed the inside of the if condition to check this:
l_class = obj_meta.classifier_meta_list
while l_class is not None:
print("There's SOME metadata!")
And I can see the sgies bounding boxes on the display, inside some person's bounding boxes, but I NEVER see my "There's SOME metadata!" message. I did this test because I need the metadata of my sgie inside l_class.
Have you come across this? What could be the issue?
Hey, first of all, thanks for doing this in Python!
I'm trying to replicate this in my Jetson NX with a couple of changes:
So I made the changes needed on the code and to my config files. I can see the mask/not mask Bounding Boxes in my display, but I can't get ahold of the metadata inside the code. This is: obj_meta.classifier_meta_list is always None.
I have changed the inside of the if condition to check this:
And I can see the sgies bounding boxes on the display, inside some person's bounding boxes, but I NEVER see my "There's SOME metadata!" message. I did this test because I need the metadata of my sgie inside l_class.
Have you come across this? What could be the issue?