Questions tagged [pose-detection]

24 questions
7
votes
1 answer

How to run MediaPipe's Pose Landmark Detection on a GPU

I am able to run MediaPipe's Pose Landmark detection on my Windows 10 computer by following this tutorial here: https://google.github.io/mediapipe/solutions/pose.html#python-solution-api, but I'm not sure how I can run this example using a GPU. I…
Amaan
  • 1,473
  • 2
  • 12
  • 11
5
votes
0 answers

How to implement MediaPipe pose library in React Native Expo

I am working on a module where I have to integrate pose detection in our mobile application. The mobile application is developed using the react native framework and the project is expo managed. We are working with the @mediapipe/pose (MediaPipe…
1
vote
1 answer

Error on running bazel build to use mediapipe pose detection

I want to use mediapipe pose detection in Android studio and I am trying to make. Aar file to use it. So on running build -c opt --config=android_arm64 mediapipe/modules/pose_detection:*, I am getting Error ERROR:…
1
vote
1 answer

ML Kit - pose graphic overlay Compose implementation not working as intended

I'm trying to implement JetPack Compose version of ML Kit pose detection using ML Kit Vision Quickstart Sample App My issue is that the pose graphic overlay lines are flipped when the camera is set to LENS_FACING_FRONT. When the camera is set…
1
vote
1 answer

How to evaluate results of PoseNet from TensorFlow Lite

I am using PoseNet from TensorFlow Lite library to detect key point on images. What is the best way to evaluate the results. I feed in images and get key points as a result. How can I say if the result is good, bad or average?
1
vote
2 answers

Pose Detection for squat with count using ML Kit

How can I get real time exercise count and angle using ML kit? Here, I check https://ai.googleblog.com/2020/08/on-device-real-time-body-pose-tracking.html for push up and squat exercise count. I am getting angle by following method : fun…
Shweta Chauhan
  • 6,739
  • 6
  • 37
  • 57
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
1 answer

Storing AVDepthData for processing in Swift

I'm trying to use VNDetectHumanBodyPose3DRequest to get 3D keypoints from videos taken in my app at 30 fps. Since the request takes too long to do in real time I'm saving the CMSampleBuffers from the camera to a video file using an AVAssetWriter.…
0
votes
0 answers

Mediapipe pose_landmarks out of range [0, 1]

It is written in the documentation of Mediapipe that: "x and y: Landmark coordinates normalized to [0.0, 1.0] by the image width and height respectively.", however I'm getting values out of that range. mediapip 0.10.1, Python 3.8.10 #!/usr/bin/env…
Bilal
  • 3,191
  • 4
  • 21
  • 49
0
votes
0 answers

How to convert modified python mediapie model to tfllite to use in flutter app

I am trying to build a pose correction app where i get the the first image and second image as input. I have a python file with a function "get_detected_image" where I use mediapipe pose detection to get the stick diagram of both the images, use a…
0
votes
1 answer

Framerate decreases after multiple video file loads on my MediaPipe Pose Detection Webserver

I am working on a MediaPipe solution where a user can choose a video on my web server, and then view the video with pose detection landmarks on top of the video. The following solution works ok, but after selecting +3 videos, the framerate decreases…
0
votes
0 answers

mediapipe solution api pose detection VueJS

I want to use mediapipe in Vue.js to detect human pose, I have tried to replicate this example using Vue.js, but I didn't succeed, can you please tell me how can I do it? thanks in advance. P.S: I didn't understand well where the results is defined…
Bilal
  • 3,191
  • 4
  • 21
  • 49
0
votes
0 answers

Google MLKit PoseDetection issue with CVPixelBuffer

I'm trying to implement pose detection using GoogleMLKit PoseDetection And for faster performance, I use CVPixelBuffer to create the MLImage, which gets passed to PoseDetector's results(in:) method. The problem is that when I pass CVPixelBuffers…
0
votes
1 answer

Understanding the output shape of mediapipes tflite models for pose detection

I'm trying to use one of mediapipes pretrained tflite models to perform a pose landmark detection in android (java), which offers me information about 33 landmarks of a human body. I know there are different ways for example using ML Kit, but for…
0
votes
0 answers

ERROR in ./src/pages/Yoga/Yoga.js 108:56-88 : export 'Supporteds' (imported as 'poseDetection') was not found in '@tensorflow-models/pose-detection'

Compiled with problems: ERROR in ./src/pages/Yoga/Yoga.js 108:56-88 export 'Supporteds' (imported as 'poseDetection') was not found in '@tensorflow-models/pose-detection' (possible exports: SupportedModels, TrackerType, calculators,…
nps
  • 1
  • 1
1
2