wher
wher

Reputation: 11

Is there a method missing in Xamarin's "Google Play Service - Vision" library for face detection?

I am using Xamarin's "Google Play Services - Vision" library for face detection. How can I adjust the smallest desired face size?

In java there seems to be the method setMinFaceSize(float proportionalMinFaceSize) in the FaceDetector.Builder class, I can't find this method in the Xamarin library.

Is there a reason why this method is missing or can I adjust this somewhere else?

Upvotes: 0

Views: 347

Answers (1)

wher
wher

Reputation: 11

I solved this issue after contacting the Xamarin support team.

I was using the current stable version of the library (Xamarin Google Play Services - Vision 27.0.0) and in that release there is indeed no method to adjust the smallest desired face size.

The method is being added in version 29. You can update to version 29.0.0 (currently prerelease) to use it.

Upvotes: 1

Related Questions