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

How to associate MediaPipe Holistic key points to a sign language?

I'm trying to make a sign language detection application. I'm using MediaPipe Holistic to extract key points and will use LSTM to train the model. MediaPipe Holistic generates a total of 543 landmarks (33 pose landmarks, 468 face landmarks, and 21…
3
votes
1 answer

Mediapipe image pose estimation ERROR: No subgraph in the model CalculatorGraph::Run() failed in Run

I do like to estimate the pose from an image using MediaPipe, Following their Tutorial I'm getting this error: ERROR: No subgraph in the model CalculatorGraph::Run() failed in Run while doing that! This error appears in Ubuntu 20.04, boost 1.71,…
Bilal
  • 3,191
  • 4
  • 21
  • 49
3
votes
5 answers

could not find a version that satisfies the requirement mediapipe (from versions: none)

Please help me out to get rid of this error while installing the mediapipe library in python 3.7.9 . I have tried upgrading pip version but nothing so far seems to help My current pip version is 21.3.1 I am running Windows 7 (32 bit) machine
MJK618
  • 161
  • 3
  • 5
  • 14
3
votes
1 answer

mediapipe solution::FaceDetection

I want to use mediapipe facedetection module to crop face Images from original images and videos, to build a dataset for emotion recognition. is there a way of getting the bounding boxes from mediapipe faceDetection solution? cap =…
3
votes
1 answer

How to change colors of the tracking points and connector lines on the output video using Mediapipe Pose?

I am referring to 33 body points and connector lines between them. I'd like to change the colors of those, especially of the white default color of the connector lines. Here's my code, I have created a class module for mediapipe which I can import…
Atharva Katre
  • 457
  • 1
  • 6
  • 17
3
votes
1 answer

Mediapipe, assign the landmarks to the vertices?

Here is the face in fbx format that mediapipe uses for their face mesh model. It has 468 vertices. Here is the visualisation of the indices. Here is the description of mediapipes face mesh model. It outputs landmark positions. How do I know which…
tag
  • 419
  • 1
  • 10
  • 24
3
votes
2 answers

AttributeError: module 'mediapipe.python.solutions.holistic' has no attribute 'FACE_CONNECTIONS'

need help this is my code: import mediapipe as mp mp_drawing = mp.solutions.drawing_utils # Drawing helpers mp_holistic = mp.solutions.holistic # Mediapipe Solutions cap = cv2.VideoCapture(0) # Initiate holistic model with…
ysfjoe
  • 51
  • 2
  • 2
  • 4
3
votes
2 answers

What could be the alternative type of 'darwin-arm64' on bazel 3.7.2 for setting mediapipe on MAC M1?

I'm trying to install 'mediapipe' at pyhton3.8.6 on mac m1 big sur 11.3.1 so when I'm trying to install bazel and run 'the Hello World desktop' example. $ brew search bazel ==> Formulae bazel ✔ bazelisk babel blaze babeld $ bazel…
San San
  • 101
  • 1
  • 2
  • 6
3
votes
0 answers

Getting this error C++ compilation of rule '@org_tensorflow//tensorflow/core/kernels:conv_ops' failed (Exit 1): gcc failed: error executing command

I am Trying to run Mediapipe Youtube 8m feature extraction graph and I am following these steps provided on this link https://github.com/google/mediapipe/tree/master/mediapipe/examples/desktop/youtube8m When I Execute this command bazel build -c opt…
3
votes
1 answer

Bazel Sync failed. Error: Deriving targets from project directories failed

I try to run the mediapipe with Bazel in Android Studio. However, I have an issue with the bazel processing failed. The error state is 'deriving targets from project directories failed'. The reference I follow:…
yan
  • 31
  • 1
3
votes
2 answers

Im trying to build mediapipe on my jetson nano

So Im trying to build a mediapipe whl file for my jetson nano by following this guide https://github.com/jiuqiant/mediapipe_python_aarch64 I am successful on building it with my raspberry pi 4. By the way this github repo also provides a whl file…
3
votes
2 answers

Mediapipe build failed (No module named 'numpy')

I tried to build HandTracker target in xcode and got this errors. error: An error occurred during the fetch of repository 'local_execution_config_python': Traceback (most recent call last): File…
annaFerdsf
  • 329
  • 2
  • 14
3
votes
0 answers

Mediapipe custom calculator for loading an image

I have a mediapipe workflow containing a video stream input from webcam. I woudl like to load an additional single constant image into the pipeline and load this image as gpubuffer(once), so that a new calcucaltor node(default mediapipe) can take…
anilsathyan7
  • 1,423
  • 17
  • 25
2
votes
0 answers

Would it be possible to use mediapipe's task-vision with segment-anything model?

I recently discovered mediapipe by google : https://www.npmjs.com/package/@mediapipe/tasks-vision And I was wondering as a python noob if there is any way to use segment anything models to replace the selfie_segmentation.tflite model provided by…
2
votes
0 answers

Achieving Lipstick Effect with Google Mediapipe Face Mesh in AR Makeup Application

I am developing an AR makeup application using Google Mediapipe's face mesh. I am facing issues with texture coordinates around the lips and teeth, which makes it difficult to create a realistic lipstick effect. The lip area appears to spill onto…
Dennis L
  • 1,713
  • 14
  • 21
1 2
3
38 39