tusen-ai / SimpleTrack

MIT License
333 stars 63 forks source link

Where to download ground truth .bin file #7

Closed wenyiwangbst closed 2 years ago

wenyiwangbst commented 2 years ago

Hi, I download the validation_ground_truth_objects_gt.bin file from waymo but return error Traceback (most recent call last): File "gt_bin_decode.py", line 129, in main(args.file_path, out_folder, args.data_folder) File "gt_bin_decode.py", line 81, in main segment_name = segment_name_list[val_index] TypeError: list indices must be integers or slices, not NoneType When I try to decode the ground truth .bin file

ziqipang commented 2 years ago

@wenyiwangbst Thanks for asking! I have tested on my side, and the following are the commands and logs I have got. Please take a look. But just a blind guess about the issue: you may have to run the preprocessing of other information before decoding the GT (see preprocess raw data), since gt_bin_decode.py has a dependency on the preprocessing of timestamp information.

python gt_bin_decode.py --data_folder ../../../datasets/waymo/mot/ --file_path ../../../datasets/waymo/sot/detection/gt/gt.bin                                                                                                 

2022-02-10 03:21:14.543521: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libnvinfer.so.6
2022-02-10 03:21:14.546074: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libnvinfer_plugin.so.6
10000  /  2172648
20000  /  2172648
30000  /  2172648
40000  /  2172648
50000  /  2172648
60000  /  2172648
70000  /  2172648
...
2080000  /  2172648
2090000  /  2172648
2100000  /  2172648
2110000  /  2172648
2120000  /  2172648
2130000  /  2172648
2140000  /  2172648
2150000  /  2172648
2160000  /  2172648
2170000  /  2172648
1 / 202
2 / 202
3 / 202
4 / 202
5 / 202
6 / 202
7 / 202
8 / 202
9 / 202
10 / 202
...
195 / 202
196 / 202
197 / 202
198 / 202
199 / 202
200 / 202
201 / 202
202 / 202
ziqipang commented 2 years ago

Close due to inactivity.