Questions tagged [mediapipe]

When you are facing any implementation issue for mediapipe in your android, iOS or desktop application, When you want any clarification on concept , methods on mediapipe etc ask question with this tag.

MediaPipe is a framework for building multimodal (eg. video, audio, any time series data), cross platform (i.e Android, iOS, web, edge devices) applied ML pipelines. With MediaPipe, a perception pipeline can be built as a graph of modular components, including, for instance, inference models (e.g., TensorFlow, TFLite) and media processing functions.

585 questions
1
vote
1 answer

Message type "mediapipe.CalculatorOptions" has no field named "ext"

Im trying to write program from course about Advanced Computer Vision based on mediapipe. I have Apple M1 processor, so I've installed mediapipe-sillicon for that and opencv-python. That's my program code: import cv2 import mediapipe as mp …
Shmukli
  • 11
  • 2
1
vote
0 answers

Passing ARCore GPU Texture to Mediapipe

I’m working on an application that detects objects with detection+tracker model (mediapipe) and sets anchors on detected objects (ARCore and Sceneform). Current implementation: Acquire Image from ARCore Frame in Scene.OnUpdateListener.onUpdate…
ksh.max
  • 429
  • 1
  • 5
  • 15
1
vote
1 answer

Getting TypeError:"Descriptors cannot be installed directly" when running MediaPipe

I am trying to run a script using mediapipe but I am getting this error: TypeError:"Descriptors cannot be installed directly" If this call came from a _pb2.py file, your generated code is out of date and must be regenerated with protoc >= 3.19.0. If…
1
vote
0 answers

How to detect Multi-Person Pose Estimation with Mediapipe?

I want to use mediapipe for pose estimation for multiple person in video footage. But using mediapipe I cant do it for multiple person. Any solution for this problem?
1
vote
0 answers

using media pipe (facemesh) to adjust 3D model from face landmark question

all these months we were trying to research on how to generate a 3D mesh from a face picture and we have tried many options until we discovered media pipe and we are very happy with it. though we have not tried it yet as our devs are mostly C++ and…
user2300947
  • 450
  • 4
  • 14
1
vote
1 answer

Include C++ library in Bazel project

I'm currently messing around with Google's Mediapipe, which uses Bazel as a build tool. The folder has the following structure: mediapipe ├ mediapipe | └ examples | └ desktop | └ hand_tracking | …
kodos
  • 35
  • 5
1
vote
0 answers

ModuleNotFoundError: No module named 'mediapipe.python._framework_bindings'

I am trying very hard from a day and unable to find solution for this problem in my rassberry pi 4. i am using OS of 32 bit (rassbian bullseye). Do anyone has solution for this issue ?? from mediapipe.python import * File…
1
vote
1 answer

Transform value 3D coordinate pose landmarks (Mediapipe) to real world value in meters?

I already print the results.pose_landmarks.landmark[mp_pose.PoseLandmark.LEFT_WRIST].z but I am not sure what this number represents and how I can transform this to meters. Can someone help me? Here is part of my code to retrieve z coordinate of the…
1
vote
1 answer

How to calculate distance from hips to hands in Mediapipe/Blazepose (z coordinates)?

I am working on a project where I detect poses from a stickfigure and I am trying to extract the z coordinates from the landmarks via mediapipe/blazepose. The next step would be to calculate the distance between the z-coordinate from the hips to the…
Amy de Lange
  • 21
  • 1
  • 2
1
vote
2 answers

How to install mediapipe with miniforge3?

I am on a new Mac M1 trying to install mediapipe and TensorFlow on the same Conda env. Installing both libraries on M1 appear to have a lot of issues. I was finally able to get TensorFlow to install using this…
connor449
  • 1,549
  • 2
  • 18
  • 49
1
vote
0 answers

how to add 3d image to mediapipe pose as a render

I'm just using the bare code of mediapipe pose:
1
vote
2 answers

py to exe error. (FileNotFoundError: The path does not exist.)

so i'm working on a project that detect the hands move and use it to control the computer mouse , every thing went so good but now i need to convert it to exe file. when i run my code in the pysharm or in the CMD console its working so good but when…
1
vote
1 answer

How Can I get the landmarks and pixel points of the nose

I am running this code to detect the nose and get its position in real time. I was able to detect the face and draw the points of the landmarks.However I couldn't figure out how I can get the positions of a specific landmark in terms of x and y. Can…
1
vote
2 answers

How I can save only the mediapipe landmarks?

I'm making a Python script to save the landmarks obtained when using mediapipe. I want to save only the landmarks but I don't want to save the rest of the frame content. Is this possible? My first idea was to create a black image and put on top of…
Matanuces
  • 11
  • 3
1
vote
0 answers

How to stabilize facial landmarks from Dlib or Mediapipe?

I'm using dlib and mediapipe to get facial landmarks arround a face image. My question is about the jittering. In Mediapipe, the researchers advise us to use temporal filter like the one euro filter to reduce the jittering. But I noticed that, in…
FurxDev
  • 11
  • 2