Home

Awesome

Garment4D

[PDF] | [OpenReview] | [arXiv] | [Project Page]

1. Overview

This is the codebase for our NeurIPS 2021 paper Garment4D: Garment Reconstruction from Point Cloud Sequences.

teaser

For further information, please contact Fangzhou Hong.

2. News

3. Getting Started

3.1 Setup the Environment

The code has been tested with Python 3.7.9, PyTorch 1.5.0, CUDA 10.1. Other required packages include:

Other than the above packages, please also compile the cuda kernels required by PointNet++ by executing python setup.py install under modules/pointnet2/pointnet2.

3.2 Download SMPL model files

Please register and download SMPL model files here. Then please put the model files at smplx/model. The folder structure should be like

./
├── 
├── ...
└── smplx/
    ├── models/
        ├── smpl/
            ├── SMPL_MALE.pkl
            ├── SMPL_FEMALE.pkl
            └── SMPL_NEUTRAL.pkl
    ├── ...

3.3 Setup the Dataset

Please download the processed CLOTH3D dataset using the following links. Due the size of the whole dataset is big (~160 GB), we split the archieve into several 10 GB chunks. You could combine them by cat CLOTH3D.z* > merged_CLOTH3D.zip and unzip it and put it under dataset.

CLOTH3D.z01CLOTH3D.z02CLOTH3D.z03CLOTH3D.z04
CLOTH3D.z05CLOTH3D.z06CLOTH3D.z07CLOTH3D.z08
CLOTH3D.z09CLOTH3D.z10CLOTH3D.z11CLOTH3D.z12
CLOTH3D.z13CLOTH3D.z14CLOTH3D.z15CLOTH3D.zip

The folder structure should look like

./
├── 
├── ...
└── dataset/
    ├──CLOTH3D/
        ├── CLOTH3D/
        ├── CLOTH3D_template/
        ├── list/
        ├── Skirt_reg/
        ├── Trousers_reg/
        └── Tshirt_reg/

3.4 Download the Pre-train Models

Please download the pre-train models using the following links and put them under pretrain.

Pre-train ModelDownload LinkL2 Error on CLOTH3D (Posed) [mm]
skirt.ckptlink49.23
trousers.ckptlink25.46
tshirt.ckptlink37.95

The folder structure should look like

./
├── 
├── ...
└── pretrain/
    ├── skirt.ckpt
    ├── trousers.ckpt
    └── tshirt.ckpt

3.5 Test with Pre-train models

Please checkout the scripts/test folder for the testing scripts. One should be able to run the corresponding testing scripts with the pre-train models and dataset setup correctly.

3.6 Train from Scratch

Please checkout the scripts/train folder for the training scripts. We currently support three types of garments i.e. skirts, Tshirts and trousers. Take skirts training as an example, please run the train_skirt_canonical.sh first for the canonical garment reconstruction and then run the train_skirt_posed.sh for the posed garment reconstruction.

4. License

Distributed under the MIT License. See LICENSE for more information.

5. Citation

If you find our work useful in your research, please consider citing the following papers:

@inproceedings{
    hong2021garmentd,
    title={Garment4D: Garment Reconstruction from Point Cloud Sequences},
    author={Fangzhou Hong and Liang Pan and Zhongang Cai and Ziwei Liu},
    booktitle={Thirty-Fifth Conference on Neural Information Processing Systems},
    year={2021},
    url={https://openreview.net/forum?id=aF60hOEwHP}
}

Acknowledgments

In our implementation, we refer to the following open-source databases: