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

How can I use smoothing techniques to remove jitter in pose estimation?

I get lots of jitter when using OpenPose to extract pose data from video. This is unnatural looking, and my results don't look natural and human. The data I get from the OpenPose model is what I have to work with, and I can't improve the quality of…
Stephen Meschke
  • 2,820
  • 1
  • 13
  • 25
9
votes
2 answers

Error installing CMake in a docker container. Could not find PROTOBUF

Hi I am trying to build a docker image that runs openpose. It goes all well until I have to compile the source I am giving... I run the Dockerfile below and it throws the following error: CMake Error at…
Douglas Ferreira
  • 707
  • 2
  • 5
  • 22
7
votes
2 answers

Calculating angles of body skeleton in video using OpenPose

Disclaimer: This question is regarding OpenPose but the key here is actually to figure how to use the output (coordinates stored in the JSON) and not how to use OpenPose, so please consider reading it to the end. I have a video of a person from the…
vesii
  • 2,760
  • 4
  • 25
  • 71
5
votes
1 answer

How to install and run openpose?

I can't understand openpose documentation. How to install and run. I am having windows 10 laptop. Please, anyone, tell me how to use it. CMU-Perceptual-Computing-Lab/openpose
4
votes
2 answers

TensorRT for python on windows

I'm having problems using TensorRT for python on windows. I want to use openpose on windows however it requires TensorRT for python. when I'm trying to execute file run_webcam.py (openpose code), I have the following error: ModuleNotFoundError: No…
Edna Salazar
  • 41
  • 1
  • 2
4
votes
1 answer

Running PyOpenPose on Google Colab

I'm trying to run PyOpenPose on Google Colab. It requires CUDA, this is how I did it. !wget https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda-repo-ubuntu1804-10-0-local-10.0.130-410.48_1.0-1_amd64 -O…
Aakash Choubey
  • 426
  • 3
  • 19
3
votes
0 answers

How to cleanly install OpenPose?

I recently needed to work on visual computing, and I went through OpenPose, which looks like a promising tool. GitHub link to OpenPose by CMU Perceptual Computing Lab As I'm working on a Windows 10 and developing with Python 3.7.5 (I use other…
Marco
  • 196
  • 1
  • 1
  • 12
3
votes
2 answers

"make all -j"$(nproc)" command works within Docker container but not in Dockerfile

I wrote the following Dockerfile to build an image with OpenPose (https://github.com/CMU-Perceptual-Computing-Lab/openpose) # Download base image FROM nvidia/cuda:9.0-cudnn7-devel # Set keyboard configuration in advance of installing CUDA #RUN…
2
votes
0 answers

Openpose demo finishes with coredump in Ubuntu20.04

-Enviroment OS : Ubuntu 20.04 LTS CPU: Intel corei7-10870H GPU: Nvidia RTX-3070 I'm trying to proceed to set up openpose in Ubuntu20.04 with reading official document. Finally I could succeed in passing through make j8 As a next step, I executed…
2
votes
1 answer

CMake can not find Python 3

The following is my error upon compiling: CMake Error at /Applications/CMake.app/Contents/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:165 (message): Could NOT find PythonInterp: Found unsuitable version "2.7.16", but required is…
Gordon
  • 21
  • 1
  • 5
2
votes
1 answer

Permanent Installation of OpenPose in Google Collab

I want to install the OpenPose files permanently so that I need not install them each time I reopen collab after a break. I got through some installation code but I dont know how to make the required modifications. import os from os.path import…
2
votes
1 answer

How to get the size of individual body parts using OpenPose in OpenCV?

I am working on a Virtual Dressing platform. I want to get the measurements of a person from an image. I have implemented OpenPose and am able to get the skeleton of a person however I have no clue as to how to get the measurements of individual…
Sahil
  • 1,387
  • 14
  • 41
2
votes
1 answer

cudnn error :: CUDNN_STATUS_SUCCESS (1 vs. 0) CUDNN_STATUS_NOT_INITIALIZED

I am trying to install a open-source software "openpose" for which I needed to install cuda, cudnn and nvidia drivers. Output of nvidia-smi is : +-----------------------------------------------------------------------------+ | NVIDIA-SMI 440.59 …
Sunny
  • 51
  • 1
  • 7
2
votes
0 answers

CMake Error at CMakeLists.txt:994 (add_subdirectory)

I'm trying to install the Python API in order to link Openpose to Touchdesigner but when I want to turn on the Python flag inside CMake I get this error: CMake Error at CMakeLists.txt:994 (add_subdirectory): The source…
serotoneeder
  • 31
  • 1
  • 2
2
votes
1 answer

openpose extract only the skeleton

I'm using openpose in a docker container. The following command create images, where the detected keypoints are printed on the original images. openpose -display=0 -image_dir=/data -write_images=/data -face=true -hand=true I would like to have…
SamuelTJackson
  • 1,357
  • 3
  • 19
  • 40
1
2 3 4 5 6 7 8