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
docs: update README with icp-flow in the official implementation.
* conf(optimization-based): update all config files.
* todo: update model file, double check with yancong and Qingwen confirm that: icp-flow results can be reproduced and tested.
-**DeFlow: Decoder of Scene Flow Network in Autonomous Driving**
35
40
*Qingwen Zhang, Yi Yang, Heng Fang, Ruoyu Geng, Patric Jensfelt*
36
41
International Conference on Robotics and Automation (**ICRA**) 2024
@@ -45,7 +50,6 @@ Additionally, *OpenSceneFlow* integrates following excellent works: [ICLR'24 Zer
45
50
-[x][ZeroFlow](https://arxiv.org/abs/2305.10424): ICLR 2024, their pre-trained weight can covert into our format easily through [the script](tools/zerof2ours.py).
46
51
-[x][NSFP](https://arxiv.org/abs/2111.01253): NeurIPS 2021, faster 3x than original version because of [our CUDA speed up](assets/cuda/README.md), same (slightly better) performance.
ICP-Flow is a optimization-based method, you can directly run `eval.py`/`save.py` to get the result.
189
+
190
+
Extra packages needed for ICP-Flow model:
191
+
```bash
192
+
pip install pytorch3d assets/cuda/histlib
193
+
```
194
+
195
+
Then run as:
196
+
```bash
197
+
python eval.py model=icpflow
198
+
python save.py model=icpflow
199
+
```
200
+
182
201
### DeFlow
183
202
184
203
Train DeFlow with the leaderboard submit config. [Runtime: Around 6-8 hours in 4x A100 GPUs.] Please change `batch_size&lr` accoordingly if you don't have enough GPU memory. (e.g. `batch_size=6` for 24GB GPU)
@@ -327,6 +346,12 @@ And our excellent collaborators works contributed to this codebase also:
327
346
journal={arXiv preprint arXiv:2501.17821},
328
347
year={2025}
329
348
}
349
+
@article{lin2024icp,
350
+
title={ICP-Flow: LiDAR Scene Flow Estimation with ICP},
351
+
author={Lin, Yancong and Caesar, Holger},
352
+
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
0 commit comments