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
2
votes
1 answer

error: (-215:Assertion failed) total >= 0 && (depth == CV_32F || depth == CV_32S) in function 'cv::convexHull'

I am trying to get the pixel coordinate values for the point detected using the open pose. Can someone tell me is this the correct way to identify the pixel coordinates or is there any other particular way to get the pixel coordinates represented as…
BatmanForLife
  • 99
  • 2
  • 3
  • 12
2
votes
0 answers

How to display data from arrays?

I am trying to read and display the values off two arrays. I understand that one array has the values (x, y), and the other one has an ID part number as. The code has Opencv, C++, and I believe Python as well, which makes it very confusing for a…
hbtousa
  • 19
  • 4
2
votes
0 answers

"corrupted double-linked list" in Openpose

I've recently gotten the following error from my python code: corrupted double-linked list I call this function in openpose: def forward(self, image, display = False): """ Forward: Takes in an image and returns the human 2D poses, along…
Arya Sadeghi
  • 480
  • 2
  • 16
2
votes
1 answer

ValueError: Error when checking target : expected dense_4 to have shape (4, ) but got array with shape (1, )

I have tried this model (" https://github.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose ")for my own data set (i have given sit action video and converted to csv file ). Csv file contains 1000 records. Now in action_enum.py I…
Malathi K
  • 71
  • 12
2
votes
4 answers

How to make the openpose use caffe without cuda supported

I wan to try Openpose: https://github.com/CMU-Perceptual-Computing-Lab/openpose in my laptop with an AMD video card,so no cuda is possible, is that possiable?How?
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
1
vote
0 answers

OpenPose in Google Collab to be Permanent to my google drive?

Every time i use : https://colab.research.google.com/drive/1VDjRLKAu9KLQky0gv4RLJjeH6NRPiWXy?usp=sharing i have to wait about 35 min installing the openpose is there anway installing it permanent and avoid waiting installtion time everytime i use…
1
vote
0 answers

Converting MoveNet to CoreML

I'm trying to convert MoveNet (evolution of PoseNet https://tfhub.dev/google/movenet/singlepose/thunder/4) into CoreML but I can't. It seems the .pb file doesn’t contain metadata. I've been following this…
1
vote
0 answers

Openpose error "zsh: abort ./build/examples/openpose/openpose.bin --image_dir examples/media/"

I have downloaded openpose on mac and I tried the command ./build/examples/openpose/openpose.bin --image_dir examples/media/ however, I am getting this a warning and it stops the execution. Starting OpenPose demo... Configuring OpenPose... Starting…
DLim
  • 67
  • 5
1
vote
0 answers

OpenPose How to solve F0414 error of GPU memory?

Do anybody know what to do with this OpenPose error? Starting OpenPose demo... Configuring OpenPose... Starting thread(s)... Auto-detecting all available GPUs... Detected 1 GPU(s), using 1 of them starting at GPU 0. F0414 17:01:38.075806 6648…
9ghtX
  • 21
  • 3
1
vote
0 answers

How to add pybind11 to python file?

I am using using openpose for my project and I have setup everything required but stuck with this pybind11 error I am running python webcam.py command Starting OpenPose Python Wrapper... Auto-detecting all available GPUs... Detected 1 GPU(s), using…
Lucifers
  • 11
  • 3
1
vote
1 answer

Cmake Error: variables NOTFOUND when configuring or building openpose on windows 10

Environment: windows 10 x64, visual studio 2017 community(has installed c++ modules following the video), cuda 10.2.89, cudnn 7.6.5, cmake 3.16-rc3, openpose-1.5.0. Following the official README document and recommended video, I try to build…
sayumi
  • 11
  • 2
1
vote
1 answer

Could not find a package configuration file provided by "Eigen3" (requested version 3)?

When I run the cmake to build openpose, the error message as below comes out. CMake Error at CMakeLists.txt:415 (find_package): Could not find a package configuration file provided by "Eigen3" (requested version 3) with any of the following names:…
deepsigner
  • 33
  • 1
  • 6
1
vote
0 answers

OpenPose for Batch Processing Videos

I am working on pose estimation for hands and face using OpenPose (https://github.com/CMU-Perceptual-Computing-Lab/openpose) on Google Colab. I have hundred videos in my dataset, right now I am able to run OpenPose on each video individually. Is…
1
vote
0 answers

"OpenPose is not defined" issue on Windows10 using Python3.7

I get the same error NameError: name 'OpenPose' is not defined mentioned in an issue in Openpose's Github repo but on Windows platform instead. I can't import openpose either. Although, I can import pyopenpose and all 'tutorial_api_python' examples…
Necroté
  • 11
  • 1
1
vote
1 answer

Looking for an approach to fit rectangles into contourpoints

This is a more general question since I don't know how to tackle or solve this problem efficiently: I am using OpenCV to get real-time contour points of moving objects (list of (x,y) coordinate tuples) I want to draw rectangles inside these contour…
Azrion
  • 117
  • 2
  • 14