FORTH-ModelBasedTracker / PyOpenPose

Python bindings for the Openpose library
BSD 3-Clause "New" or "Revised" License
287 stars 80 forks source link

where is pyopenpose #59

Closed hushunda closed 6 years ago

hushunda commented 6 years ago

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

padeler commented 6 years ago

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.

hushunda commented 6 years ago

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?

padeler commented 6 years ago

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

JasOlean commented 6 years ago

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'