Awais Abbas
Awais Abbas

Reputation: 145

How to determine face shape using Firebase ML kit?

I am using Firebase ML kit in an android application for face detection so far everything is fine but now i just want to detect the face shape(Oval, Square or heart Face shape). I read the documentation but couldn't find anything relating to face shapes. May be i overlooked or may there isn't anything about it. If there is a way please let me know. Thank you in advance.

Upvotes: 0

Views: 622

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598668

If the documentation of the product doesn't mention the feature you're looking for, then it's most likely that this feature isn't a part of that product.

You could try to derive the shape from the information that ML Kit does deliver, for example from the bounding box, but the information might not be enough for that.

Outside of that, the best way to implement this feature in that case is to train a custom AutoML model to detect the face shape.

Upvotes: 1

Related Questions