Questions tagged [openpose]

Questions related to OpenPose, a real-time multi-person keypoint detection library for body, face, and hands estimation, written in C++ and internally using OpenCV and Caffe.

More information in OpenPose

113 questions
1
vote
0 answers

Tensorflow let my opencv VideoWriter fail

I'm trying to use Openpose hand detector ( OpenPose Python Wrapper ). It made by tensorflow and let my opencv videowriter fail. Here is the code import detection_keypoints import detection_rectangles import cv2 cap =…
Terry shu
  • 73
  • 1
  • 1
  • 4
1
vote
0 answers

Openpose addon for Blender on Windows : how can python detect a video file?

Recently I have installed OpenCV and OpenPose for tracking the head of a 3d character created,rigged and animated in Blender 2.81 on Windows 10. When I use OpenCV I use this addon : https://github.com/jkirsons/FacialMotionCapture and when I use Open…
john_connor
  • 165
  • 2
  • 2
  • 15
1
vote
0 answers

Installation of openpose inside a docker container - installation issues with the dockerfile

I want to install openpose through docker for python 3. For that, I am making a Dockerfile with all the commands and getting an error with the installation process. I am trying to build the Dockerfile from scratch using this code. FROM ubuntu LABEL…
1
vote
0 answers

import PyOpenPose as OP ImportError: DLL load failed: The specified module could not be found

Working on a Windows 10 Trying to set up pose2pose, which needs PyOpenPose and OpenPose to run keep running into the issue in the code below: I'v added every combination of every variable to my paths, and my PYTHONPATH and even made python37.pth and…
Kilderan
  • 21
  • 5
1
vote
0 answers

Import Error Openpose in Python project with Mac OS

I have installed OpenPose in MacOSX, and I can execute the examples like this: './build/examples/openpose/openpose.bin --video examples/media/video.avi' But I cannot import/use the Openpose library in Python projects. In Openpose folder I've done:…
AlexAcc
  • 601
  • 2
  • 10
  • 28
1
vote
1 answer

CMake Error: failed to create symbolic link '../../lib/libcaffe.so': function not implemented

I am trying to build openpose on google colab, and I have Cmake configuration was done, and when it comes to make, I used make -j4 all it popped an error, here is the error: [ 84%] Linking CXX shared library ../../lib/libcaffe.so CMake Error:…
1
vote
1 answer

Running of "OpenPose C++ API Tutorial - Example 3 - Body from image" has failed

I have successfully installed openpose (with OpenCV, CUDA, and all required libraries). At first I have tried to run openpose by running demo application (I had to use argument --net-resolution): ./build/examples/openpose/openpose.bin…
Honza
  • 939
  • 2
  • 11
  • 28
1
vote
0 answers

My openpose builds don't have a necessary .bin file. Building with CMake according to installation.md

I need to run openpose and get the output keypoint data from it. I believe the description on how to do that exists here: https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/demo_overview.md But, after following the…
DrunkAI
  • 11
  • 2
1
vote
1 answer

Hand rectangle detection with OpenPose

I'm using openpose, and I have no clue of how to start this task. I need to draw a rectangle over the people's hand (not the pose of the fingers, just the rectangle), using the skeleton estimation that open pose provides, but I don't really have…
Mario Vega
  • 67
  • 7
1
vote
2 answers

How to improve performance net.forward() of cv2.dnn.readNetFromCaffe() , net.forward taking more time(7 to 10 seconds/frame) to give the result

I have used net = cv2.dnn.readNetFromCaffe(protoFile, weightsFile) and then looping through the live video frames to get the outputs for each frames using net.forward(). But the net.forward() takes 7 to 10 seconds for each frames to give the result.…
Vasant
  • 101
  • 2
  • 10
1
vote
0 answers

Setup of Openpose: opencv2/core.hpp not found

I'm trying to setup Openpose + Pyopenpose following in a container following this gist: https://github.com/christian-lanius/PyOpenPose. That works fine until the caffe compilation step, during which a opencv2/core.hpp not found exception is thrown…
justonemorething
  • 193
  • 1
  • 2
  • 12
1
vote
0 answers

Openpose CMakeLists

Having trouble building Openpose. Got to the "OpenPose Building" heading on MacOS, however the CMakeLists.txt for caffe (in 3rdparty) doesn't exist. Where do I find this or is there a work around? Below is my terminal output... CMake Error: The…
Somaya
  • 11
  • 2
1
vote
1 answer

Openpose gives error:The CPU/GPU pointer data cannot be accessed from a different thread

I want to initialize an openose instance,save it as a class field,and this class implemented some grpc related logic,will listen on a port,and I want pass the request(an image) from this port to saved openpose instance for detection,then return back…
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
0
votes
0 answers

i could not installl a openpose library from c++ for pose detection

I have installed the OpenPose library for my pose detection project using C++. However, I am encountering difficulties with the installation process, particularly when trying to download models as per the instructions provided on…
Vignesh
  • 1
  • 1
0
votes
2 answers

How to change c++ compiler version in CMake when building OpenPose on MacOS?

I have cloned the latest version of OpenPose and try to build it on MacOS 13.5 (22G74). After I run make -j sysctl -n hw.logicalcpu it generates a bunch of errors saying that I used an outdated c++…
YPZ404
  • 13
  • 1
  • 3