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

Reduce openpose key points (skeleton) to detect minimal key point in openpose?

I am using openpose Tensorflow for multi personal pose estimation. But as it follows COCO 18 keypoints detection, it is taking lots of time to detect. How can i reduce this detection of keypoints to detect only one part(eg: leg). means I don't want…
0
votes
1 answer

no module found : tensorflow.contrib

trying to run openpose on windows. tensorflow = 1.14 installed already. getting the error no module found : tensorflow.contrib is there any way to work out on this on windows? or any other library to work for pose detection? Please suggest a…
PARUL
  • 95
  • 7
0
votes
0 answers

Boost error when building Openpose on ubuntu16.04

I am trying to build openpose on my ubuntu16.04 server, following the guide here. When I go to call make in the build directory, my results have this error: [ 12%] Performing configure step for 'openpose_lib' CMake Warning (dev) at…
jk_sri
  • 91
  • 5
0
votes
0 answers

Install caffe on Mac OS X (Catalina)

I am following the official instructions from http://caffe.berkeleyvision.org/install_osx.html A couple of things are unclear. Instructions say "CUDA: Install via the NVIDIA package that includes both CUDA and the bundled driver." I do not have an…
Katya
  • 1,126
  • 1
  • 8
  • 11
0
votes
0 answers

List out of index error for a two iterable loop [Running a Python script for OpenPose using webcam]

Issue Summary I've tried to run a python script for obtaining the nose and neck key points by running a loop over the heat maps for these key points and setting a threshold value of 200. It works fine for a single image. However, I tried modifying…
Vanya A
  • 1
  • 1
  • 2
0
votes
1 answer

Installing openpose on Colab

I have been trying to install openpose on google colab using the following script. import os from os.path import exists, join, basename, splitext git_repo_url = 'https://github.com/CMU-Perceptual-Computing-Lab/openpose.git' project_name =…
sak18
  • 101
  • 13
0
votes
1 answer

How to generate skeleton view using human pose estimation?

I am trying to use human pose estimation through keras implementation. I am using this source https://github.com/michalfaber/keras_Realtime_Multi-Person_Pose_Estimation. My problem is how can I generate the skeleton view of the following image, the…
ashish14
  • 650
  • 1
  • 8
  • 20
0
votes
1 answer

OpenPose: E0312 / no suitable user-defined conversion from "fLS::clstring" to "const op::String" and other errors

my NB crashed a few weeks ago and what was working well on my Linux Ubuntu, now does not. I need to install and make OpenPose working on my second notebook (the one from my job). Unfortunately, here I have only Windows 10 and it is not possible to…
Honza
  • 939
  • 2
  • 11
  • 28
0
votes
1 answer

Use openpose on videos in google drive on google colab

I am using openpose for extracting skeleton structures of some videos and running the codes on google colab for better hardware conditions. When I upload videos from local to google colab and use openpose, it works well. I want to use google…
brotherSoo
  • 37
  • 1
  • 5
0
votes
0 answers

Feed GStreamer sink into OpenPose

I have a custom USB camera with a custom driver on a custom board Nvidia Jetson TX2 that is not detected through openpose examples. I access the data using GStreamer custom source. I currently pull frames into a CV mat, color convert them and feed…
Marcus Gee
  • 126
  • 2
0
votes
1 answer

Increment in While Loop

I am working on a exercise counter using Openpose. Right now I am in testing phase the Issue that I am encountering is i have this code snippet if len(pose) > 0: print ("Start Pushup") if (lh_angle and ll_angle…
0
votes
0 answers

Monocular Total Capture usage error : import numpy as np ImportError: No module named 'numpy'

I'm trying to use this repo : https://github.com/CMU-Perceptual-Computing-Lab/MonocularTotalCapture I've completed the installation part and I started to use it. This is what I should do : In ${ROOT}, run "bash run_pipeline.sh ${seqName}"; if the…
john_connor
  • 165
  • 2
  • 2
  • 15
0
votes
0 answers

Could not find the following Boost libraries : boost_python2 while trying to configure boost for making work pyopenpose

I want to build this repository : https://github.com/FORTH-ModelBasedTracker/PyOpenPose On Ubuntu 19.10 : Linux zio-Z390-AORUS-PRO 5.3.0-40-generic #32-Ubuntu SMP Fri Jan 31 20:24:34 UTC 2020 x86_64 x86_64 x86_64…
john_connor
  • 165
  • 2
  • 2
  • 15
0
votes
1 answer

openpose Undefined symbols for architecture x86_64

I met an error when running make -j`sysctl -n hw.logicalcpu` to build openpose on maxos catalina: [ 40%] Linking CXX shared library libopenpose.dylib Undefined symbols for architecture x86_64: …
Turan
  • 1
0
votes
1 answer

How do I use OpenPose data to segment a long clip?

I love the OpenPose library -- and I've been playing with the demo for a while. I like the option of it spitting out JSON file data of the poses. I wanted to ask -- are there any examples I've missed or solutions where someone takes that pose…