I want to use python package cv2 version 4.5.5 for object tracking. The examples on the web using an older cv2 version have many possible algorithms but in my version I only see this
cv2.TrackerMIL_create()
How do I access the rest of the algorithms like cv2.TrackerMOSSE_create(),cv2.TrackerCSRT_create()
Also I want to track multiple objects. Do I need to create a tracker for each object or is there a way to pass a list of bounding boxes to the algorithm for tracking?