Search code examples
fluttercross-platformface-detectionazure-cognitive-services

Flutter emotion recognizer api?


I'm developing an android app which use azure for emotion recognition in kotlin, but I would like to know if a similar alternative exists using flutter.

The only alternative I've found so far is this, but catch only the happiness, and not several emotion like azure does.

Does anybody know a way for emotion recognition using flutter? thanks in advice


Solution

  • You can still use Azure for image recognition which is written in Kotlin. You need to implement that API natively in your android code using platform channel provided by the flutter. Through platform channels, you can implement any native API or SDK which is not available in Dart and its pretty easy and can be used for many purposes such as implementing payment gateways and native APIs. Here's the official documentation for Platform Channel