File size: 335 Bytes
5b1c4a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """
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"
|