init: package scaffold
Browse files- point2mesh/__init__.py +11 -0
point2mesh/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Point2Mesh — A Self-Prior for Deformable Meshes.
|
| 3 |
+
|
| 4 |
+
Pure-Python/PyTorch reimplementation of the SIGGRAPH 2020 paper by
|
| 5 |
+
Hanocka et al. Takes a PCD or PLY point cloud and produces a
|
| 6 |
+
shrink-wrapped triangle mesh.
|
| 7 |
+
|
| 8 |
+
Usage
|
| 9 |
+
-----
|
| 10 |
+
python -m point2mesh --input cloud.ply --output mesh.obj
|
| 11 |
+
"""
|