Hi,
1- Is it possible to track more than one classes at the same time? for example my model is trained on 6 classes how i can track all classes at the same time?
I am able to track one class successfully but unable to track all.
I have tried this method
if predicted_class != 'person' and predicted_class != 'car':
print(predicted_class)
continue
but it's tracking same by default class.
2-If we track more than one classes , will it effect the speed?