Upload __init__.py
Browse files- __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"
|