""" 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", ]