605 questions
1
vote
0
answers
406
views
How to rotate mediapipe facial landmarks in the roll, pitch, and yaw axes in Python?
I have extracted facial landmarks using mediapipe and stored it in a csv file. When I visualised the face using the 468 x-and y-coordinates, the face that I depicted is rotated in roll, yaw, and pitch ...
0
votes
0
answers
93
views
Collecting data for Body measurements with Quickpose.ai in iOS
I am exploring the possibility with QuickPose.ai I have follow the exemple about the range of motion to and can print angle values in continue.
I would like to do the same with different body ...
0
votes
1
answer
188
views
RuntimeError: File loading is not yet supported on Windows
i have been working on a hand gesture recognition model, i have been updating, downgrading and debugging a lot of modules and then this error showed up:
Warning (from warnings module):
File "C:\...
1
vote
0
answers
216
views
Mediapipe hand model
while searching on MediaPipe hands model, architecture
I found they depend on Blaze palm for detection, but I am unable to understand the full Blaze palm architecture
found in MediaPipe hands paper
...
0
votes
0
answers
162
views
pyinstaller: Reduce python executable final size with heavy library (Mediapipe)
I'm developing a small app that uses Mediapipe to load a .tflite model to extract image embeddings and use cosine similarity to get the similar ones.
Everything is working, but I want to share it with ...
0
votes
1
answer
385
views
How crop image before Image Classification
I am using MediaPipe to find the breed of a dog, if there is one, in a camera image. I first use ObjectDetector, and if it finds a dog, I send what is inside the bounding box to ImageClassifier, with ...
2
votes
0
answers
1k
views
Face landmark detection using Mediapipe and in C++
In may 2023, the mediaipie team released a new API which makes it easy to extract face landmarks from videos and live streams in python and Javascript, which have very clear code examples. This API ...
1
vote
1
answer
361
views
MediaPipe Pose Landmarker Question - how to play a sound when certain pose is detected
First I'll apologize and explain I'm a UX designer, not really a developer, though I have a basic understanding of HTML, CSS, Javascript.
I want to create a super simple web-app based on this codepen ...
0
votes
1
answer
781
views
Is media pipe is use with deep face for face recognition for better accuracy
I'm using deep face for recognition but the accuracy is not good so I try to implement the media pipe in which I extract the landmarks so I give this to the deep face for better accuracy. Is there any ...
0
votes
1
answer
3k
views
How to check for and enforce GPU usage for Mediapipe frame processing
When I process a frame with mediapipe, is there any way, using Python 3.10 and CUDA libraries, to validate whether the processing will be done on the GPU (RTX3060) and, if doesn't currently run on the ...
1
vote
0
answers
187
views
Is it possible to run object detection models retrained with mediapipe on tensorflow directly instead of using mediapipe?
I am using this mediapipe guide to retrain an object detection model and export it to a tflite model. I want to use that model in react-native. Unfortunately, there is no direct react-native ...
0
votes
0
answers
132
views
Hand Tracking: Tracking One Hand At A Time Instead Of Both
I'm currently working on a hand tracking simulation, using MediaPipe and Unity3D. The problem is that while both hands are being tracked(By MediaPipe) only one is actively moving in Unity while the ...
0
votes
2
answers
628
views
How would you use Google MediaPipe for a desktop JavaFX application?
I want to use Google's Mediapipe for a Kotlin JavaFX Desktop application. However, I am encountering a few roadblocks, which brings up a few questions.
Since it is advertised as an Andriod library, ...
0
votes
0
answers
215
views
Pose estimation web app running extremely slow in deployment
I have the following script for taking 2 input videos of people dancing, compare them frame-by-frame for the body movements (pose estimation), and then display the accuracy with which the user video ...
0
votes
1
answer
56
views
i want to measure the distance between nosetip and tip of index finger using facemesh vertices
I have put facemesh and handmesh in a single frame real-time.
I've been trying to get the coordinates of each of the facemesh vertices but having trouble.
I was able to print out the whole coordinates ...
1
vote
0
answers
181
views
Error encountered with version of Mediapipe in the project of recognizing numbers by fingers
I got the following error:
WARNING: All log messages before absl::InitializeLog() is called are written to STDERR
F0000 00:00:1699179362.286673 14712 collection.h:56] Failed to get tag "...
0
votes
1
answer
2k
views
Detecting hands or body using running_mode=VIDEO / LIVE_STREAM (Mediapipe)
I'm trying to implement a hands detection using Mediapipe libraries. For now, I'm detecting hands frame by frame on my realsense stream using the code below.
But now I want to use running_mode=VIDEO ...
0
votes
0
answers
371
views
Error on importing cv2 and mediapipe in python
I had installed both opencv-python and mediapipe modules using pip and my python version is 3.10.5, and when I try to just execute below two lines separately:
For importing cv2:
import cv2
then Iam ...
0
votes
1
answer
357
views
Hand Tracking Module
I was trying to make an Hand Tracking Module with python, opencv and mediapipe, that I'll integrate later with another code, the code is:
import cv2
import mediapipe as mp
import time
import math
...
1
vote
0
answers
326
views
Failed to load dynamic library and got bad ELF magic error in flutter
I am trying to use the ffi package to be able to use c++ to use mediapipe. To get started I want to execute a simple printf function.
#include <stdio.h>
void produce_landmarks()
{
printf(&...
1
vote
1
answer
601
views
Python Mediapipe AttributeError: 'NoneType' object has no attribute 'pose_landmarks'
im trying to use Mediapipe as a pose estimator with pose_landmarker task using the mediapipe documentation code with some alterations, however it keeps spitting out this error AttributeError: '...
0
votes
0
answers
406
views
I keep getting an Error while using MediaPipe - still pretty new to using MediaPipe not sure how to fix this
Error Message:
Traceback (most recent call last):
File "/Users/anirudhakumar/PycharmProjects/SignLanguageDetector /test_classifier.py", line 22, in <module>
mp_drawing....
0
votes
1
answer
584
views
An error occurred during the fetch of repository 'local_config_apple_cc'
On Mac OS, I get the following error when trying to run the "Hello World!" in C++ example.
It says there is no repository local_config_apple_cc
Is this something wrong with my PC settings?
...
0
votes
3
answers
2k
views
ModuleNotFoundError 'mediapipe'
I have been trying to install mediapipe on my M2 Pro Mac but have not had any success since weeks now. I have followed the guide found on https://developers.google.com/mediapipe/framework/...
0
votes
1
answer
969
views
How do I fix this python hand tracking with mediapipe and open-cv error?
So I am following this tutorial:Tutorial I cannot seem to get the HandTrackingModule working. The HandTrackingMin works fine. The difference is that I put all the code in a function and run it in the ...