This repository hosts the official code and resources for the paper "MIND: Material Interface Generation from UDFs for Non-Manifold Surface Reconstruction" published at NIPS 2025.
We propose a novel algorithm to extract non-manifold mesh from unsigned distance fields.
This project requires Python [Version] or higher.
- We need pytorch installed.
-
Clone the repository:
git clone https://github.com/jjjkkyz/MIND.git cd MIND -
Install dependencies:
pip install -r requirements.txt -
Install:
pip install -e .
from mldf import MIND
# some neural network
udf_func = your_input
resolution = 256
# for more paremeters, see the source code
mind_mesh_extractor = MIND(udf_func, resolution)
mesh = mind_mesh_extractor.run()
If you find this repository or our paper useful, please cite our work:
@inproceedings{
chen2025mind,
title={{MIND}: Material Interface Generation from {UDF}s for Non-Manifold Surface Reconstruction},
author={Xuhui Chen and Fei Hou and Wencheng Wang and Hong Qin and Ying He},
booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems},
year={2025},
url={https://openreview.net/forum?id=4lR9OhAisI}
}
This project is licensed under the MIT License