File size: 637 Bytes
8c60408 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | """
NKSR Wrapper — Point Cloud to Mesh Reconstruction
A clean, high-level Python wrapper around the Neural Kernel Surface
Reconstruction (NKSR) method by Huang et al. (CVPR 2023, Highlight).
NKSR reconstructs high-fidelity watertight meshes from sparse, noisy,
and large-scale point clouds using Neural Kernel Fields (NKF) with
compactly-supported kernels, gradient fitting, and minimal training.
"""
__version__ = "0.1.0"
from .reconstructor import NKSRMeshReconstructor, MeshResult
from .io import load_point_cloud, save_mesh
__all__ = [
"NKSRMeshReconstructor",
"MeshResult",
"load_point_cloud",
"save_mesh",
]
|