Closed worldhugo closed 6 years ago
Current PyOpenPose version builds with this commit.
Since the openpose api changes fast, PyOpenPose is usually a bit behind in compatibility. I will update the code to work with the latest openpose version as soon as possible, meanwhile you can try it with the above commit.
It's ok, with last commit of OpenPose (03/04/2018), in OpenPoseWrapper.cpp :
const auto faceRectsOP = membersPtr->faceDetector.detectFaces(poseKeypoints, 1.0f);
to
const auto faceRectsOP = membersPtr->faceDetector.detectFaces(poseKeypoints);
const auto handRectsOP = membersPtr->handDetector.detectHands(poseKeypoints, 1.0f);
to :
const auto handRectsOP = membersPtr->handDetector.detectHands(poseKeypoints);
Thanks for all !
Hi,
after installing Opencv3.3, Openpose (work great !), I want to try PyOpenPose (thanks for your work).
I have this output when I launch "make" :
Openpose build correctly and install without problem ...
Thanks !