1,699 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
94
views
Issue with Google ML Kit Face Detection: Detecting Invisible Landmarks When Partial Face is Visible
I'm currently using google_mlkit_face_detection in my Flutter project for face detection. However, I've run into an issue:
When only a small part of my face is visible to the camera — for example, ...
0
votes
0
answers
90
views
"How to Properly Dispose Tensors in face-api.js + tfjs-node to Prevent Memory Leak?"
I'm using face-api.js (specifically the @vladmandic/face-api version) for the first time in a Node.js server environment, and while face detection and comparison are working, I'm running into a ...
0
votes
1
answer
66
views
Silencing progress bars spawned by DeepFace's extract_faces method
I'm using the library DeepFace in my personal project to extract bounding boxes of detected faces from images. As of now my setup is fairly simple, given the list of desired backends bknds:
detections ...
1
vote
0
answers
110
views
Module not found error with @infinitered/react-native-mlkit-face-detection in Expo managed
I'm trying to implement face detection in my Expo managed workflow project using the @infinitered/react-native-mlkit-face-detection library. I've followed the installation and setup steps, but I keep ...
0
votes
1
answer
433
views
I am encountering an issue with drawing boxes in Face Detection using MediaPipe
I'm trying to create simple code to detect faces using my webcam with the MediaPipe library, but I'm facing an issue. When I attempt to draw the box on the mp_image, it's not appearing. Can someone ...
1
vote
1
answer
130
views
Android - Face Detection
Is there a way to obtain the image data when using MlKitAnalyzer for face detection ? I am able to draw the bounding box and get all the contours/landmarks but now I need to do rgb calculation on the ...
0
votes
0
answers
116
views
Disappointing Dlib face detection performance in C++ while in python it is very good, How to fix it?
The face detection performance is quite disappointing in C++ code compared to python where for detection in 1 frame in C++ it reaches around 1-2 seconds while in python it is only less than 500ms. I ...
0
votes
1
answer
194
views
Face detection freezes camera feed on screen after some time
Using following Kotlin loop we are showing camera feed, detect human faces in feed and drawing face bounding boxes on video feed on screen.
Using workReducer counter we check face availability ever 0....
0
votes
0
answers
486
views
Fixing scaling in react-native-vision-camera-face-detector
const frameProcessor = useSkiaFrameProcessor((frame) => {
'worklet'
const faces = detectFaces(frame);
frame.render();
for (const face of faces) {
if (face?....
0
votes
1
answer
150
views
how to utilize the react-native-vision-camera library to detect faces from a static image URI
The FaceDetector from expo-face-detector has been marked as deprecated in sdk 51 and the official expo documentation recommends to use react-native-vision-camera.
Below is my old function:
import * as ...
1
vote
0
answers
162
views
Cannot read properties of undefined (reading 'mediapipeFacemesh') on my wordpress plugin using tensorflow.js
I have this code to superimpose an image on the face detected by he camera.
The camera is opened but the image is fixed at the top, I want it to be dynamic between the eyes of the face.
When I open ...
2
votes
1
answer
1k
views
Replacement for Expo Face Detector?
I have a react native expo app that relied heavily on expo face detector. I have been notified by the google play store that apps need to target a new minimum API version and In my case Is the expo ...
0
votes
1
answer
224
views
Why Google android mlkit face-detection can still detect mouth landmark when I wear a mask
implementation 'com.google.mlkit:text-recognition:16.0.0'
FaceLandmark mouth = face.getLandmark(FaceLandmark.MOUTH_BOTTOM);
if (mouth == null) { //*never reach here *! }
Why Google android mlkit ...
-5
votes
2
answers
577
views
Batch processing for face detection (MTCNN) [closed]
Is it possible to detect faces with mtcnn performing batch processing? I need to detect faces from 1 million images.
If it's possible, please share the ways to achieve that.
0
votes
1
answer
294
views
Undefined name 'GoogleMlKit' although the google_mlkit_face_detection package is installed in Flutter
I am currently working on a feature where I can take a picture using camera and then scan if there is any face found in the picture. I followed some tutorials online, however I am encountering an ...