bdck commited on
Commit
23471c0
·
verified ·
1 Parent(s): 04e8615

init: package scaffold

Browse files
Files changed (1) hide show
  1. 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
+ """