sort
sort copied to clipboard
Simple, online, and realtime tracking of multiple objects in a video sequence.
Hello, I have an issue with object tracking and object detection. I have a model doing object detection which returns bounding boxes, confidences and labels. I pass in the bounding...
Hello, thank you so much for the library. I am implementing a variation of it and including other criteria to the states as well (depth of object ) i have...
To what extent can we expect this method to reduce bounding box blinking and jittering? What parameters can I try to improve the bounding box stabilization effect? So far I...
Hello! It's been a while since I first saw this implementation of SORT. Now I see that Numba is no more required, but I have question: what are the advantages...
As I've seen the format should be [x1,y1,x2,y2,score] (where x1,y1 is the top left and x2,y2 is the bottom right), and not in [[x,y,w,h,score],[x,y,w,h,score],...], as stated in the description, as...
When my detector doesn't detect an object but Sort is still tracking them , the update() function doesn't return this bbox so i can't draw it in the image. Any...
@abewley First of all thanks for this wonderful piece of work...it literally gave me insights into object tracking...just one question for you...can you please tell me for what are the...
why dim_x=7, dim_z=4 in __init__? I think dim_x should be 8, so [cx,cy,w,h,vx,vy,vw,vh] have 8 attribute. and, dim_z=4 means what? Thank you!
I forked this repository and ran it as is, and encountered an error when trying to run `sort.py`. I found this issue [here](https://github.com/numpy/numpy/issues/12744), which suggests upgrading `scikit-image` to `0.14.2`. The...
Hi, Could you please clarify the coordinate system for the bounding box of the detections? In sort.py, the notes say > Params: > dets - a numpy array of detections...