Task-Oriented Human Grasp Synthesis via Context- and Task-Aware Diffusers
- Ubuntu 20.04
- Pytorch 2.0.1
- CUDA 11.7
- Python 3.8
# create conda env
conda create -n tohgs python=3.8
conda activate tohgs
- MANO
cd manopth
pip install .
- Install Pytorch, Pytorch3D and Kaolin
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2
pip install fvcore
pip install --no-index --no-cache-dir pytorch3d -f https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py38_cu117_pyt201/download.html
pip install kaolin==0.15.0 -f https://nvidia-kaolin.s3.us-east-2.amazonaws.com/torch-2.0.1_cu117.html
- Other Python packages
pip install -r requirements.txt
- PointNet++
git clone https://github.com/erikwijmans/Pointnet2_PyTorch.git
cd Pointnet2_PyTorch
pip install -e .
pip install pointnet2_ops_lib/.
- V-hacd
git clone https://github.com/kmammou/v-hacd.git
cd v-hacd
cd app
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build