FORTH-ModelBasedTracker / PyOpenPose

Python bindings for the Openpose library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

where is pyopenpose

hushunda opened this issue · comments

the code import PyOpenPose as OP in JustHand.py can't find PyOpenPose.
can you tell me where is pyopenpose

PyOpenPose is created when you build the library (follow the instructions on how to build it). Once you have the library built, make sure its location is in the PYTHONPATH.

Thank you for your reply.
I have cmake .. and make ,but can't find pyopenpose.py,only find pyopenpose.so
Is the PyOpenPose PyOpenPose.so instead of PyOpenPose.py?

PyOpenPose.so is the library you are looking for. Just add its location in your PYTHONPATH.

I set the PYTHONPATH in .bashrc file like this: export PYTHONPATH=/usr/local/lib/:$PYTHONPATH
But error is the same.
File "JustHandNet.py", line 4, in
import PyOpenPose as OP
ImportError: No module named 'PyOpenPose'