You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install CUDA here with the same version as PyTorch python -c 'import torch;print(torch.version.cuda)'. You may skip it if you alreadly have it in your machine.
Make sure you set the right CUDA_HOME (e.g. ls $CUDA_HOME/bin/nvcc works.)
and then build extension
python setup.py install # install to sys.path
python setup.py build develop # install to workspace
Demo
From the cmr directory, download the trained model:
cd misc && wget https://people.eecs.berkeley.edu/~kanazawa/cachedir/cmr/model.tar.gz && tar -vzxf model.tar.gz && cd ..
If you use this code for your research, please consider citing:
@inProceedings{cmrKanazawa18,
title={Learning Category-Specific Mesh Reconstruction
from Image Collections},
author = {Angjoo Kanazawa and
Shubham Tulsiani
and Alexei A. Efros
and Jitendra Malik},
booktitle={ECCV},
year={2018}
}
@InProceedings{kato2018renderer
title={Neural 3D Mesh Renderer},
author={Kato, Hiroharu and Ushiku, Yoshitaka and Harada, Tatsuya},
booktitle={The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2018}
}
About
Project repo for Learning Category-Specific Mesh Reconstruction from Image Collections (Python3/PyTorch)