Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mlkit-face-detection] iOS detectWithStillImage doesn't detect face #30

Open
gookhans opened this issue Jun 9, 2022 · 0 comments
Open

Comments

@gookhans
Copy link

gookhans commented Jun 9, 2022

I use detectWithStillImage function with local ImageSource. Android works fine but iOS doesn't detect face.
android result: {"face": [...]}
iOS result: {} (empty object)

my code:

const localImage: ImageSource = await ImageSource.fromAsset(imageUrl);

detectWithStillImage(localImage, {
            detectorType: DetectionType.Face,
            faceDetection: {
                detectionMode: 'fast',
                faceTracking: false,
                landmarkMode: 'none',
                contourMode: 'none',
                classificationMode: 'none',
                minimumFaceSize: 0.1
            }
        })
            .then((result) => {
                console.log(result);
                return result;
            })

Thanks in advance for the support

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant