sort
sort copied to clipboard
Symbolic link
Does someone face the issue of symbolic link creation in Linux for MOT dataset. its giving me error as link not found. pls help..
Even I am not able to create the symbolic link
You can make following modifications to let the script accept the MOT benchmark location as an input argument.
After line# 235 add the following code
parser.add_argument('--benchmark', help='Pass the MOT benchmark location', required=True)
After line# 243 add the following code
benchmark = args.benchmark
Replace line#271 with the following code
fn = os.path.join(benchmark,phase, seq, 'img1','{:06d}.jpg'.format(frame))
After the modifications as above, you don't have to create a symbolic link, instead you have to pass the benchmark location as argument when running the script.
Example code to run script after modification:
!python sort.py --display --benchmark data/MOT