You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Google ML Kit to detect face from taken photo by react native camera kit.
On Android, it works properly to detect face by using ml kit.
But for iOS, even though the image meets the required quality, face detection is not working.
My question is that is it about the image quality not meeting that is captured by react native camera kit?
Code Example import FaceDetection from '@react-native-ml-kit/face-detection' const { uri } = await cameraRef.current.capture() const result = await FaceDetection.detect(imagePath)
result face array is always empty.
Expected behavior
result face array should not be empty if the face is detected.
Smartphone (please complete the following information):
Tested with both release and debug version.
The text was updated successfully, but these errors were encountered:
This doesn't seem like an issue with Camera Kit. Please submit your bug report to @react-native-ml-kit/face-detection who seems to be the owner of that library.
This doesn't seem like an issue with Camera Kit. Please submit your bug report to @react-native-ml-kit/face-detection who seems to be the owner of that library.
FaceDetection.detect works with url image only not on a local image
I am using Google ML Kit to detect face from taken photo by react native camera kit.
On Android, it works properly to detect face by using ml kit.
But for iOS, even though the image meets the required quality, face detection is not working.
My question is that is it about the image quality not meeting that is captured by react native camera kit?
Code Example
import FaceDetection from '@react-native-ml-kit/face-detection'
const { uri } = await cameraRef.current.capture()
const result = await FaceDetection.detect(imagePath)
result face array is always empty.
Expected behavior
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered: