| """ | |
| LightweightMR - Pure-Python reimplementation of | |
| "High-Fidelity Lightweight Mesh Reconstruction from Point Clouds" (CVPR 2025). | |
| A two-stage pipeline: | |
| 1. Learn an implicit SDF from a point cloud. | |
| 2. Generate + displace vertices onto the surface, then Delaunay-mesh. | |
| Dependencies: torch, numpy, scipy | |
| """ | |
| __version__ = "0.1.0" | |