sort icon indicating copy to clipboard operation
sort copied to clipboard

Symbolic link

Open syeda27 opened this issue 5 years ago • 2 comments

Does someone face the issue of symbolic link creation in Linux for MOT dataset. its giving me error as link not found. pls help..

syeda27 avatar Mar 14 '19 03:03 syeda27

Even I am not able to create the symbolic link

1siddhi7 avatar Sep 08 '19 11:09 1siddhi7

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

khalidw avatar Feb 23 '20 06:02 khalidw