YoungXIAO13 / PoseFromShape

(BMVC 2019) PyTorch implementation of Paper "Pose from Shape: Deep Pose Estimation for Arbitrary 3D Objects"
http://imagine.enpc.fr/~xiaoy/PoseFromShape/
MIT License
170 stars 34 forks source link

LINEMOD data error #10

Closed meghalD closed 4 years ago

meghalD commented 4 years ago

I downloaded LINEMOD dataset and then ran ply2obj.py create_annotation.py. they both run fine. But while running render.py for the same I get the following error :

Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 19:07:31) [GCC 7.3.0] on linux Type "help", "copyright", "credits" or "license" for more information.

import bpy Traceback (most recent call last): File "", line 1, in ImportError: libopenal.so.1: cannot open shared object file: No such file or directory

YoungXIAO13 commented 4 years ago

Hi,

I think this problem results from the missing lib file in your system.

You can try sudo apt-get install libopenal1 according to this answer

meghalD commented 4 years ago

Hi,

I think this problem results from the missing lib file in your system.

You can try sudo apt-get install libopenal1 according to this answer

it worked. Thanks