Skip to content

Commit 21ca00c

Browse files
committed
docs: fix small typo, and starting updating model file.
1 parent 4cf1168 commit 21ca00c

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ European Conference on Computer Vision (**ECCV**) 2024
3333

3434
- **ICP-Flow: LiDAR Scene Flow Estimation with ICP**
3535
*Yancong Lin, Holger Caesar*
36-
Conference on Computer Vision and Pattern Recognition (**CVPR**) 2024
36+
Conference on Computer Vision and Pattern Recognition (**CVPR**) 2024
3737
[ Optimization-based ] [ Self-Supervised ] - [ [arXiv](https://arxiv.org/abs/2402.17351) ] [ [Project](https://github.com/yanconglin/ICP-Flow) ] → [here](#icp-flow)
3838

3939
- **DeFlow: Decoder of Scene Flow Network in Autonomous Driving**

src/models/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,11 @@
3636
from .fastnsf import FastNSF
3737
except ImportError:
3838
print("--- WARNING [model]: FastNSF is not imported, as it requires FastGeodis lib which is not installed.")
39+
40+
# following need install extra package:
41+
# * pip install pytorch3d assets/cuda/histlib
42+
try:
43+
from .icpflow import ICPFlow
44+
except ImportError:
45+
print("--- WARNING [model]: ICPFlow is not imported, as it requires pytorch3d lib which is not installed.")
46+
print(f"Detail error message\033[0m: {e}. Just ignore this warning if code runs without these models.")

0 commit comments

Comments
 (0)