Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- onnx
|
| 5 |
+
- point-cloud
|
| 6 |
+
- ezonnx
|
| 7 |
+
---
|
| 8 |
+
### RAP - Register Any Point
|
| 9 |
+
ONNX models for inference with [EZONNX](https://github.com/ikeboo/ezonnx)
|
| 10 |
+
|
| 11 |
+
- Model type:
|
| 12 |
+
point cloud registration
|
| 13 |
+
|
| 14 |
+
- Official GitHub repository:
|
| 15 |
+
[RAP - Register Any Point: Scaling 3D Point Cloud Registration by Flow Matching](https://github.com/PRBonn/RAP)
|
| 16 |
+
|
| 17 |
+
- Usage
|
| 18 |
+
```python
|
| 19 |
+
from ezonnx import RAP, visualize_point_clouds
|
| 20 |
+
model = RAP()
|
| 21 |
+
clouds = ["samples/bunny_source.ply","samples/bunny_target.ply"]
|
| 22 |
+
res = model(clouds)
|
| 23 |
+
visualize_point_clouds(["Source", "Target","Registered"],
|
| 24 |
+
[clouds[0], clouds[1], [res.data[0], res.data[1]]])
|
| 25 |
+
```
|