Installation guide
Hi @williamljb thanks for such a nice and amazing work. This project is really helpful.
I'm unable to find detail about project installation, can you provide detail installation about project that where to add SMPL, pre-trained weights etc...
Thanks for your support.
Hi Ian786,
Thanks for your interest! For installation, please check the guide here. The prerequisites are the same. For training/test options, please see src_ortho/config.py
Hi @williamljb thanks for your kind response. I just gave it my best try and it's working only for single image.
I have some questions, kindly help me by answering these questions
-
What do you meant by multi-view?
(a) Getting single/multi images as input and then view results of all corresponding images in different views? I mean image 1 (input) --> result (in different views), image 2 (input) --> result (in different views). or (b) Getting multi images from different view (may be from 2 cameras) as input and then view best possible results (as one image)? I mean images (1+2) --> results (as single image having different view). -
In demo.py line 156 you declared a list fcs which is getting faces.obj and show.obj file. What is the purpose of this list, is it necessary part of this repository, if yes then from where we can get faces.obj and show.obj files?
-
If I passed only single image, I can get result in two different views along with original view. It means for single image code is working fine but when I passed more than one images having different views (captured from 2 cameras with different views) then I'm getting following error.

Thanks for your precious time.
Hi Ian786,
- It is (b). The final visualized result will be on camera 0.
- The faces in the list are the same as SMPL models. This is just a convenient way to reconstruct and export the body mesh since I didn't know the API for the faces in the renderer or in the SMPL model.
- Can you show me your command? You can check if the image paths are parsed correctly here. I guess one possible reason is that you may have an extra comma at the end of the input string.
Hi @williamljb here is my command
python -m demo --img_paths data/image1.png, data/image2.png
Hi Ian786,
The problem is because there is an extra space between two image paths. Try the following: python -m demo --img_paths data/image1.png,data/image2.png