Skip to content

Latest commit

Β 

History

History
95 lines (64 loc) Β· 2.57 KB

File metadata and controls

95 lines (64 loc) Β· 2.57 KB

MuNet: A Mutualistic Network for Joint 3D Human Mesh Recovery and 3D Clothed Human Reconstruction from Single Images

This repository contains the official implementation of MuNet, proposed in the paper:
"MuNet: A Mutualistic Network for Joint 3D Human Mesh Recovery and 3D Clothed Human Reconstruction from Single Images".


πŸ”₯ Overview

(a) Framework of joint 3D human mesh recovery and 3D clothed human reconstruction. The tasks of 3D human mesh recovery and 3D clothed human reconstruction form a closed loop: the 3D body model ($\hat{\mathcal{M}}$) generated by 3D human mesh recovery serves as guidance for reconstructing the surface of the 3D clothed human ($\hat{\mathcal{S}}$). Subsequently, the surface reconstruction errors are fed back to the 3D human mesh recovery task for improving the 3D body model. (b) Intermediate results generated by the two tasks during training. It can be observed that 3D human mesh recovery and 3D clothed human reconstruction are mutually beneficial. As with iterations, the results of both tasks are gradually improving. (c) The final results show that our method can recover accurate 3D human meshes of humans wearing loose-fitting clothing and reconstruct highly-fidelity 3D clothed human models.


✨ Results


βš™οΈ Installation

Clone the repository:

git clone https://github.com/your_username/MuNet.git
cd MuNet


Install dependencies:

pip install -r requirements.txt

πŸš€ Usage

Training

python main_train.py

Evaluation

python eval.py

πŸ“‚ Project Structure

.
β”œβ”€β”€ networks/           # Network architectures
β”œβ”€β”€ main_train.py       # Training script
β”œβ”€β”€ eval.py             # Evaluation script
β”œβ”€β”€ requirements.txt    # Dependencies
β”œβ”€β”€ README.md           # Project readme
β”œβ”€β”€ first_pic.png       # Overview figure
└── img.png             # Results figure

πŸ“– Citation

If you find this work useful in your research, please consider citing:

@article{MuNet,
  title={MuNet: A Mutualistic Network for Joint 3D Human Mesh Recovery and 3D Clothed Human Reconstruction from Single Images},
  anthor = {Yunqi Gao, Leyuan Liu, Yuhan Li, Changxin Gao, Jingying Chen},
  journal={},
  year={2025}
}

πŸ™Œ Acknowledgments

This work builds upon prior research in 3D human reconstruction, including SMPL-based mesh recovery and clothed human modeling approaches.