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
0 answers

I'm trying to use openPose to track if I am squatting and if I am it presses the 'w' key but I keep getting an error

Here is my bug. I have made sure openpose is installed correctly. poses = posenet.estimate_poses(frame) ^^^^^^^^^^^^^^^^^^^^^^ AttributeError: module 'posenet' has no attribute 'estimate_poses' Here is my code: import posenet import cv2 #…
0
votes
0 answers

I have some issue when I install openpose Pyhon build

First, my env. Python 3.11.x (newst) Visual enterprise 2022 (I install C++ component what I know that) Window 10 - recently reset. Cuda 12.1 with cuDNN for 12.x (all recent ver. since I reset the PC) Situation. I clone github git clone…
0
votes
0 answers

Force Closing Open Pose

The program '[6992] OpenPoseDemo.exe' has exited with code 4294967295 (0xffffffff). It keeps exiting after I ran it. at first it was looking for a dll file, so I just copy paste all the dll file in the OpenPosedemo directory, then it is now the…
Miller
  • 1
  • 1
0
votes
0 answers

How can I successfully terminate a multiprocessing function that calls a powershell command?

So I've been running this program called openpose and I run it using multiprocessing. def openpose(): os.chdir(r'C:\Users\cubeow\OneDrive\Desktop\OpenPose\openpose-1.7.0-binaries-win64-gpu-python3.7-flir-3d_recommended\openpose') …
0
votes
0 answers

Why am I getting this The initial magnification of the image is set to 'fit' in a docked figure MATLAB error?

`Warning: The initial magnification of the image is set to 'fit' in a docked figure. In imshow (line 322) In extractScaling_openpose (line 21) In OpenPoseGaitAnalysis_JS (line 11) ` This occurs when it reaches the point in which it needs to run…
0
votes
0 answers

Why am I getting this The initial magnification of the image is set to 'fit' in a docked figure MATLAB error

I am following this project https://github.com/janstenum/GaitAnalysis-PoseEstimation. I have ran the first command and made it all the way through until I ran into this error: Warning: The initial magnification of the image is set to 'fit' in a…
0
votes
0 answers

Is it possible to use OpenPose output of x and y coordinates to detect rotating movement?

I did some research on OpenPose and the output is x and y coordinates with confidence point. x and y coordinates are good for detecting up, down, left, and right movements. I was wondering is it possible to detect turning movements. Turning usually…
0
votes
1 answer

error while loading shared libraries: libopenpose.so.1.7.0: cannot open shared object file: No such file or directory

I'm using Google Colab to Pose estimation with Openpose; I've mounted my gdrive, installed openpose and copied it's directory on a drive one. It was all working until after I closed and reopened my session after few hours After compiling this cell…
antof27
  • 1
  • 1
0
votes
0 answers

Python: Openpose Camera Set-up

I am tryinig to use Openpose Demo for 3D keypoint detection. I am usinig different brand of cameras. For 2D keypoint detection, it was successful to use my camera. Also, I connected 4 cameras to my computer, and Openpose demo worked well with each…
hanbi Kim
  • 1
  • 1
0
votes
1 answer

When using yolov7 pose,the size of the generated image is smaller than the original,how to fix?

I referenced the code from this link. import torch import cv2 from torchvision import transforms import numpy as np from utils.datasets import letterbox from utils.general import non_max_suppression_kpt from utils.plots import output_to_keypoint,…
CR7
  • 125
  • 7
0
votes
0 answers

Python API DLL load failed while importing pyopenpose on Windows 10

I can't run OpenPose in Python even though I've followed every step, BUILD_PYTHON is marked, I have the 3 files inside build/python/openpose/Release, and I am running the tutorial examples in the console command from…
0
votes
0 answers

openpose python, is possible to extract just the hand keypoints?

I'm wondering if there is a way to use openpose in python in a "plug and play" way in order to extract just the hand keypoints and saving them into a JSON file.
0
votes
0 answers

how to disable alphapose background

I wish to just use alphapose to detect the skeleton without the background. I know that openpose can do with --disable_blending but I do not know about alphapose. Can anyone advice.
Learner91
  • 103
  • 6
0
votes
1 answer

convert 2d openpose keypoint to 3d in 2d image

i am getting 2d keypoint from openpose on images/videos using https://github.com/CMU-Perceptual-Computing-Lab/openpose extracted person/human ROI is passed to openpoe for keypoints as for dirname, _, filenames in os.walk('/content/extracted_roi'): …
0
votes
0 answers

what protoc commande do in this line?

i'm using this documentation and i didn't get the step 4 https://medium.com/@alok.gandhi2002/build-openpose-with-without-gpu-support-for-macos-catalina-10-15-6-8fb936c9ab05#726f i tried this MacBook-Pro-de-admin:openpose admin$ protoc…