605 questions
0
votes
0
answers
19
views
Is it possible to modify existed .task file?
I'm studying & trying to use mediapipe
I want to modify the Android project face-landmarker
I want to modify the graphs & parameters of landmarker by modifying the .task file. By this way:
...
0
votes
1
answer
97
views
Mediapipe time interval between frames on facial landmarks extraction
I'm used to working with MediaPipe in Python on a Windows 11 desktop setup. In this environment, if VIDEO mode is selected, MediaPipe automatically reads the video frame count, and the detected frames ...
0
votes
0
answers
24
views
AAR file genearation Build error in mediapipe
bazel build -c opt --strip=ALWAYS --host_crosstool_top=@bazel_tools//tools/cpp:toolchain --fat_apk_cpu=arm64-v8a,armeabi-v7a --legacy_whole_archive=0 --features=-legacy_whole_archive ...
0
votes
1
answer
160
views
Mediapipe Hands module resolves incorrect path to .task file
I am following the documentation, but BaseOptions seems to resolve the model path incorrectly — instead of using my project directory, it prepends a Python package path.
base_options = BaseOptions(...
2
votes
0
answers
77
views
mediapipe custom pose connections
I am using mediapipe with javascript. Everything works alright until i try to show connections between spesific landmarks (in my case bettween landmarks 11, 13, 15, 12, 14, 16)
here is my custom ...
0
votes
0
answers
198
views
Python MediaPipe how to create 3d model points based on the 2d image points
Well I got some troubles trying to implement a code that check where a person is facing from a video. The objective is to see if the person look in 6/8 position (up,left,right,down, and its ...
2
votes
0
answers
127
views
Distance between facial landmarks changes with head rotation using MediaPipe Face Landmarks and Three.js
I'm using the @mediapipe/tasks-vision library to extract 3D face landmarks in a browser-based application and trying to measure the distance between two specific points: landmark 143 and landmark 372 (...
1
vote
0
answers
82
views
pod install MediaPipeTasksVision gives glog duplicate symbol error
I'm posting because I can't seem to find a solution to this problem. I'm running an expo (52.0.46) react native (0.76.7) application on an M3 Mac (Sequoia 15.2) and once I add pod install ...
1
vote
0
answers
51
views
What is the correct way to apply MediaPipe pose data to a Bevy GLTF character?
I am trying to correctly apply MediaPipe pose data to the bones of a Bevy GLTF model. I have coded it as shown below, and the upper arm seems to move correctly, but the forearm moves strangely.
I’m ...
1
vote
1
answer
790
views
Error installing "mediapipe" in google colab
I am trying work with "mediapipe" in colab. But after installing, I am running into dependency-related issues. Here is a code snippet and error regarding it:
pip install mediapipe
Error:
...
0
votes
0
answers
58
views
Deployed a ML model that uses realtime camera feed. But getting error in it
This is the error I am getting.
OpenCV and streamlit is used in accessing the camera.
The website was working fine on localhost. It is accessing the camera then.
I was expecting it to get access to ...
0
votes
0
answers
205
views
"The export Hands was not found in module" error
Here is my Github projects, and right now i got some problems with webcam-feed.jsx in ui folder while importing from mediapipe: text or you can see my code below
'use client';
import { useEffect, ...
0
votes
0
answers
117
views
Android mediapipe second inference instance can't be initialized
I do some experiments with google.mediapipe framework and observing next issue... if some instance/task was initialized, it's impossible to create another instance of inference task after.
For example,...
0
votes
0
answers
50
views
How to Implement System-Wide Hand Tracking on Android Using Snapdragon XR1?
I am working on a project to replace touch input with hand tracking for system-wide interactions (e.g., scrolling, swiping, opening apps) on an Android device powered by Snapdragon XR1. I want to ...
0
votes
0
answers
86
views
How to process pose, left hand, right hand, and face landmarks in the correct order using MediaPipe?
I am working on a project where I need to process pose landmarks, left hand landmarks, right hand landmarks, and face landmarks in a specific order using MediaPipe. However, the landmarks are not ...
-2
votes
1
answer
228
views
How to overlay custom shapes on detected landmarks in Python using MediaPipe? [closed]
I'm working on a project using MediaPipe to detect hand landmarks. While the detection is working fine, I want to customize the visualization. Instead of the default connections and dots provided by ...
1
vote
0
answers
37
views
Facelandmarks 3D position in IOS Scenekit
I'm trying to convert facelandmarks to 3d points in scenekit.Even with incorrect depth value face tracks correctly but it is not useful as occluder. because worldpoint is wrong and face mesh always ...
0
votes
0
answers
167
views
Face detection off when using google's mediapipe in unity
How are you doing?
I am developing a project for Android using AR. The main goal of this project is to identify people's faces and place a virtual representation of their headsat the same place as the ...
0
votes
0
answers
141
views
MediaPipe hand detection works with direct camera access but fails with camera permission button implementation
I have two different implementations of a hand gesture detection system using MediaPipe, where one works perfectly and the other doesn't.
Working Implementation:
from flask import Flask, ...
0
votes
1
answer
301
views
Mediapipe gives different results in two cases image file path and numpy array input
As you may know, Mediapipe provides landmark locations based on the aligned output image rather than the input image.
Objective:
I intend to perform landmark detection on multiple images. Below, I’ve ...
0
votes
1
answer
194
views
TypeError: face_detection.FaceDetection is not a constructor in React/Vite Production Build
I'm implementing face detection using MediaPipe in a React/TypeScript application with Vite. While the code works perfectly in development mode (npm run dev), I'm getting a constructor error when ...
0
votes
1
answer
313
views
mediapipe hand tracking on Android, C++ ndk side
Is it possible to use mediapipe hand landmark detection directly on the NDK side?
The hand landmark solution is in Kotlin, but my project will use GameActivity and I have already a buffer on the C++ ...
0
votes
0
answers
53
views
MP_RETURN_IF_ERROR(m_Graph.Initialize(config)))
I'm debugging with the dll of my self-compiled mediapipe face_mesh, but I'm getting an error at this location(
std::string calculator_graph_config_contents;
MP_RETURN_IF_ERROR(mediapipe::file::...
0
votes
1
answer
450
views
Is there any way of using node modules packages subfolders?
I am using @mediapipe/tasks-vision npm package in the webapp, I want to use my own wasm folder that's present in 'node_modules/@mediapipe/tasks-vision/wasm'.
I am using next.js as the front end.
Any ...
1
vote
0
answers
36
views
Android Media Pipe Filters
Is anyone working on any face image filters or third-party libraries using Google MediaPipe mesh points or open cv for Android?Need to render the 2d or 3d image usig media pipe or open cv.
I have ...