sort icon indicating copy to clipboard operation
sort copied to clipboard

length of arguments

Open ncrasta opened this issue 3 years ago • 2 comments

I am trying to use SORT with YOLO. Some of the YOLO implementations have 6 arguments, while some have 7 in detection. How many does the SORT require?

ncrasta avatar Sep 07 '20 11:09 ncrasta

Maybe you can provide more information on what the arguments represent.

SORT takes one argument which is an array of boxes where each column is: left, top, right, bottom, score. The score is ignored and the others are the pixel coordinates of the box sides. See description at https://github.com/abewley/sort/blob/master/sort.py#L213

abewley avatar Oct 25 '20 18:10 abewley

Thanks. I had a confusion with the length of the array as some YOLO implementations were giving different lengths.

ncrasta avatar Jan 13 '21 13:01 ncrasta