bdck commited on
Commit
5b1c4a3
·
verified ·
1 Parent(s): cc5de6d

Upload __init__.py

Browse files
Files changed (1) hide show
  1. __init__.py +12 -0
__init__.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ LightweightMR - Pure-Python reimplementation of
3
+ "High-Fidelity Lightweight Mesh Reconstruction from Point Clouds" (CVPR 2025).
4
+
5
+ A two-stage pipeline:
6
+ 1. Learn an implicit SDF from a point cloud.
7
+ 2. Generate + displace vertices onto the surface, then Delaunay-mesh.
8
+
9
+ Dependencies: torch, numpy, scipy
10
+ """
11
+
12
+ __version__ = "0.1.0"