MediaPipe Face Mesh Not Working on Galaxy S25 Ultra #5908
Labels
platform::android
Android Solutions
platform:javascript
MediaPipe Javascript issues
task:face landmarker
Issues related to Face Landmarker: Identify facial features for visual effects and avatars.
type:bug
Bug in the Source Code of MediaPipe Solution
Have I written custom code (as opposed to using a stock example script provided in MediaPipe)
None
OS Platform and Distribution
Android 15
Mobile device if the issue happens on mobile device
Galaxy S25 Ultra
Browser and version if the issue happens on browser
Google Chrome 133.0.6943.138
Programming Language and version
Javascript
MediaPipe version
0.10.3
Bazel version
No response
Solution
Face Landmark Detection
Android Studio, NDK, SDK versions (if issue is related to building in Android environment)
No response
Xcode & Tulsi version (if issue is related to building for iOS)
No response
Describe the actual behavior
Face Mesh successfully detects faces for the first few frames. After a short time, detection stops entirely, even though the camera feed remains active. The issue persists across different browsers and environments, including the official MediaPipe Web Demo.
Describe the expected behaviour
Face Mesh should consistently detect faces throughout execution, without stopping unexpectedly. Detection should remain stable, as seen on other devices where the model runs without issues.
Standalone code/steps you may have used to try to get what you need
async function createFaceLandmarker() { const filesetResolver = await FilesetResolver.forVisionTasks( "https://cdn.jsdelivr.net/npm/@mediapipe/[email protected]/wasm" ); faceLandmarker = await FaceLandmarker.createFromOptions(filesetResolver, { baseOptions: { modelAssetPath:
https://storage.googleapis.com/mediapipe-models/face_landmarker/face_landmarker/float16/1/face_landmarker.task
, delegate: "GPU" }, outputFaceBlendshapes: true, runningMode, numFaces: 1 }); let startTimeMs = performance.now(); results = faceLandmarker.detectForVideo(video, startTimeMs); }Other info / Complete Logs
The text was updated successfully, but these errors were encountered: