You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, when I execute python main.py, I get the following error, what should I do to fix it?
Traceback (most recent call last):
File "main.py", line 147, in
seq_dets_3D = np.loadtxt(seq_file_3D, delimiter=',') # load 3D detections, N x 15
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/npyio.py", line 1042, in loadtxt
fh = np.lib._datasource.open(fname, 'rt', encoding=encoding)
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/_datasource.py", line 193, in open
return ds.open(path, mode, encoding=encoding, newline=newline)
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/_datasource.py", line 532, in open
raise FileNotFoundError(f"{path} not found.")
FileNotFoundError: /media/DeepFusionMOT/datasets/kitti/train/3D_pointrcnn_Car_val\0000.txt not found.
The text was updated successfully, but these errors were encountered:
I guess you are running the code in Ubuntu, but it seems the author ran the code in windows. Thus the folder path has some difference in ubuntu and windows
You can go to line 17 of file_operation/file.py
Change "position = detections_root + "\" + detections_file" to "position = detections_root + "/" + detections_file"
Hello, when I execute python main.py, I get the following error, what should I do to fix it?
Traceback (most recent call last):
File "main.py", line 147, in
seq_dets_3D = np.loadtxt(seq_file_3D, delimiter=',') # load 3D detections, N x 15
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/npyio.py", line 1042, in loadtxt
fh = np.lib._datasource.open(fname, 'rt', encoding=encoding)
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/_datasource.py", line 193, in open
return ds.open(path, mode, encoding=encoding, newline=newline)
File "/home/miniconda3/envs/dfmot/lib/python3.8/site-packages/numpy/lib/_datasource.py", line 532, in open
raise FileNotFoundError(f"{path} not found.")
FileNotFoundError: /media/DeepFusionMOT/datasets/kitti/train/3D_pointrcnn_Car_val\0000.txt not found.
The text was updated successfully, but these errors were encountered: