Closed hwan0806 closed 11 months ago
Hi @hwan0806. Thank you for your interest in our work. Unfortunately, I haven’t tested our model on the KITTI-360 dataset. However, I will test it based on your request, and if I have any results, I will share you.
I look forward to hearing back about the results. Thank you for your efforts!
Hi, @hwan0806! Sorry for my late reply. Today, I tested our method in KITTI360's 2013_05_28_drive_0009_sync set, and I get good results similar to the KITTI validation set.You can check the predictions from here, code:pnhr. I guess you may have made some incorrect conversions during the process of converting data to KITTI format. Actually, I did not convert the data to KITTI format. I just change the directory structure like this. To achieve good results, you may need to focus on the following issues:
README.md
in kissicp repo to install it, and then run kitti.ipynb
to generate poses. Note that before running, you must have the calib.txt
and time.txt
files included. You can directly generate the time.txt
file using the following code:
with open('time.txt', 'w') as file:
for i in range(0, 14056):
time = i * 0.1
file.write(str(time) + '\n')
As for calib.txt
file, you are free to copy a calib.txt
file from the KITTI dataset and modify Tr
as follows: [1,0,0,0,0,1,0,0,0,0,1,0]. By doing this, you can directly obtain the LiDAR poses.Thank you, @neng-wang, for your specific and kind explanation! Before reaching out to you, I had synchronized the scan data with the pose data, but I now realize that was an invalid approach for this model. Following your advice, I used KISS-ICP to extract the pose information and got fantastic results as shown below.
Thank you for your effort! I'll close this issue.
First of all, thank you for open-sourcing an awesome paper and codes. I think your group is making a great contribution to the development of the academic community and I always appreciate about it :)
I checked the validation results on KITTI dataset as you shared, and got great results, but when I applied it to KITTI360 dataset, I got relatively poor results, which made me ask a question.
I utilized N_10_t_0.1_odom.ckpt and applied it to KITTI360's 2013_05_28_drive_0009_sync set. In particular, the instance segmentation did not perform well and tended to segment static instances as dynamic objects. If you have ever tested this model to KITTI-360 dataset, could you share one of them? If not, could you share any tips on tuning the parameters?
The data format of KITTI-360 is slightly different from that of KITTI, so preprocessing step is needed to convert it to KITTI format, but there may be some mistakes I made in that process. I can share the data I utilized if needed.
Thank you!