|
11 | 11 | OpenSceneFlow is a codebase for point cloud scene flow estimation. |
12 | 12 | It is also an official implementation of the following papers (sored by the time of publication): |
13 | 13 |
|
| 14 | +- **HiMo: High-Speed Objects Motion Compensation in Point Clouds** (SeFlow++) |
| 15 | +*Qingwen Zhang, Ajinkya Khoche, Yi Yang, Li Ling, Sina Sharif Mansouri, Olov Andersson, Patric Jensfelt* |
| 16 | +Preprint; Under review; 2025 |
| 17 | +[ Strategy ] [ Self-Supervised ] - [ [arXiv](https://arxiv.org/abs/2503.00803) ] [ [Project](https://kin-zhang.github.io/HiMo/) ] |
| 18 | + |
14 | 19 | - **Flow4D: Leveraging 4D Voxel Network for LiDAR Scene Flow Estimation** |
15 | 20 | *Jaeyeul Kim, Jungwan Woo, Ukcheol Shin, Jean Oh, Sunghoon Im* |
16 | 21 | IEEE Robotics and Automation Letters (**RA-L**) 2025 |
@@ -197,7 +202,21 @@ python eval.py checkpoint=/home/kin/seflow_best.ckpt av2_mode=test leaderboard_v |
197 | 202 | python eval.py checkpoint=/home/kin/seflow_best.ckpt av2_mode=test leaderboard_version=2 |
198 | 203 | ``` |
199 | 204 |
|
200 | | -To submit to the Online Leaderboard, if you select `av2_mode=test`, it should be a zip file for you to submit to the leaderboard. |
| 205 | +### **📊 Range-Wise Metric (New!)** |
| 206 | +In [SSF paper](https://arxiv.org/abs/2501.17821), we introduce a new distance-based evaluation metric for scene flow estimation. Below is an example output for SSF with point_cloud_range to 204.8m and voxel_size=0.2m. Check more long-range result in [SSF paper](https://arxiv.org/abs/2501.17821). |
| 207 | + |
| 208 | +| Distance | Static | Dynamic | NumPointsStatic | NumPointsDynamic | |
| 209 | +|-----------|----------|----------|-----------------|------------------| |
| 210 | +| 0-35 | 0.00836 | 0.11546 | 3.33e+08 | 1.57e+07 | |
| 211 | +| 35-50 | 0.00910 | 0.16805 | 4.40e+07 | 703125 | |
| 212 | +| 50-75 | 0.01107 | 0.20448 | 3.25e+07 | 395398 | |
| 213 | +| 75-100 | 0.01472 | 0.24133 | 1.31e+07 | 145281 | |
| 214 | +| 100-inf | 0.01970 | 0.30536 | 1.32e+07 | 171865 | |
| 215 | +| **Mean** | 0.01259 | 0.20693 | NaN | NaN | |
| 216 | + |
| 217 | + |
| 218 | +### Submit result to public leaderboard |
| 219 | +To submit your result to the public Leaderboard, if you select `av2_mode=test`, it should be a zip file for you to submit to the leaderboard. |
201 | 220 | Note: The leaderboard result in DeFlow&SeFlow main paper is [version 1](https://eval.ai/web/challenges/challenge-page/2010/evaluation), as [version 2](https://eval.ai/web/challenges/challenge-page/2210/overview) is updated after DeFlow&SeFlow. |
202 | 221 |
|
203 | 222 | ```bash |
@@ -265,8 +284,8 @@ If you find it useful, please cite our works: |
265 | 284 | pages={2105-2111}, |
266 | 285 | doi={10.1109/ICRA57147.2024.10610278} |
267 | 286 | } |
268 | | -@article{zhang2025himu, |
269 | | - title={HiMo: High-Speed Objects Motion Compensation in Point Cloud}, |
| 287 | +@article{zhang2025himo, |
| 288 | + title={HiMo: High-Speed Objects Motion Compensation in Point Clouds}, |
270 | 289 | author={Zhang, Qingwen and Khoche, Ajinkya and Yang, Yi and Ling, Li and Sina, Sharif Mansouri and Andersson, Olov and Jensfelt, Patric}, |
271 | 290 | year={2025}, |
272 | 291 | journal={arXiv preprint arXiv:2503.00803}, |
|
0 commit comments