nielsr HF Staff commited on
Commit
bef6307
·
verified ·
1 Parent(s): 52981e1

Update license, pipeline tag, and improve model card structure

Browse files

Hi! I'm Niels, part of the community science team at Hugging Face. I've opened this PR to improve the model card for RAP. Key changes include:
- Updated the license to **MIT** in the metadata to match the official GitHub repository.
- Updated the `pipeline_tag` to `other`.
- Added the full list of authors and a link to the paper page on Hugging Face.
- Included the formal BibTeX citation for researchers to easily cite your work.
- Cleaned up the Markdown for better structure and readability.

These updates help the community better discover, understand, and attribute your research!

Files changed (1) hide show
  1. README.md +30 -4
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
- license: apache-2.0
3
- pipeline_tag: robotics
4
  tags:
5
  - point-cloud
6
  - 3d-vision
@@ -12,7 +12,7 @@ tags:
12
  # Register Any Point: Scaling 3D Point Cloud Registration by Flow Matching
13
 
14
  [![Project Page](https://img.shields.io/badge/Project_Page-RAP-red)](https://register-any-point.github.io/)
15
- [![arXiv](https://img.shields.io/badge/arXiv-2512.01850-blue?logo=arxiv&color=%23B31B1B)](https://arxiv.org/pdf/2512.01850)
16
  [![GitHub](https://img.shields.io/badge/GitHub-RAP-black?logo=github)](https://github.com/PRBonn/RAP)
17
  [![Demo](https://img.shields.io/badge/Gradio-RAP-red?logo=gradio)](https://f299fbbc3c4f12d152.gradio.live/)
18
 
@@ -20,5 +20,31 @@ tags:
20
 
21
  **Register Any Point (RAP)** is a single-stage multi-view point cloud registration model based on conditional flow matching generation in the Euclidean space. RAP model generalises to point clouds with diverse scales, sensors, view counts, and overlapping ratios.
22
 
 
23
 
24
- For details, please check our [Github repository](https://github.com/PRBonn/RAP)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ pipeline_tag: other
4
  tags:
5
  - point-cloud
6
  - 3d-vision
 
12
  # Register Any Point: Scaling 3D Point Cloud Registration by Flow Matching
13
 
14
  [![Project Page](https://img.shields.io/badge/Project_Page-RAP-red)](https://register-any-point.github.io/)
15
+ [![arXiv](https://img.shields.io/badge/arXiv-2512.01850-blue?logo=arxiv&color=%23B31B1B)](https://huggingface.co/papers/2512.01850)
16
  [![GitHub](https://img.shields.io/badge/GitHub-RAP-black?logo=github)](https://github.com/PRBonn/RAP)
17
  [![Demo](https://img.shields.io/badge/Gradio-RAP-red?logo=gradio)](https://f299fbbc3c4f12d152.gradio.live/)
18
 
 
20
 
21
  **Register Any Point (RAP)** is a single-stage multi-view point cloud registration model based on conditional flow matching generation in the Euclidean space. RAP model generalises to point clouds with diverse scales, sensors, view counts, and overlapping ratios.
22
 
23
+ ## Paper Information
24
 
25
+ - **Paper**: [Register Any Point: Scaling 3D Point Cloud Registration by Flow Matching](https://huggingface.co/papers/2512.01850)
26
+ - **Authors**: Yue Pan, Tao Sun, Liyuan Zhu, Lucas Nunes, Iro Armeni, Jens Behley, Cyrill Stachniss.
27
+ - **Project Page**: [https://register-any-point.github.io/](https://register-any-point.github.io/)
28
+
29
+ ## Summary
30
+
31
+ Point cloud registration aligns multiple unposed point clouds into a common reference frame and is a core step for 3D reconstruction and robot localization. RAP casts registration as conditional generation: a learned, continuous point-wise velocity field transports noisy points to a registered scene, from which the pose of each view is recovered.
32
+
33
+ Unlike prior methods that perform correspondence matching to estimate pairwise transformations and then optimize a pose graph for multi-view registration, RAP directly generates the registered point cloud, yielding both efficiency and point-level global consistency.
34
+
35
+ ## Installation and Usage
36
+
37
+ For details on installation and running inference, please check the [official GitHub repository](https://github.com/PRBonn/RAP).
38
+
39
+ ## Citation
40
+
41
+ If you use RAP in your research, please cite:
42
+
43
+ ```bibtex
44
+ @article{pan2025arxiv,
45
+ title = {{Register Any Point: Scaling 3D Point Cloud Registration by Flow Matching}},
46
+ author = {Pan, Yue and Sun, Tao and Zhu, Liyuan and Nunes, Lucas and Armeni, Iro and Behley, Jens and Stachniss, Cyrill},
47
+ journal = {arXiv preprint arXiv:2512.01850},
48
+ year = {2025}
49
+ }
50
+ ```