How to integrate custom Python face recognition model in Flutter?

Viewed 499

I have a custom Python face recognition model. I want to integrate it locally in Flutter app so, how to integrate it in Flutter? To use it in Flutter do i have to convert it in some form like tflite or I can normally use it with some library?

Note- The model takes image as input and gives person info who's face the model recognizes. I want to integrate in Flutter so that it can run on mobile rather than on server.

2 Answers

You can use starflut plugin in order to run python code in a flutter application.

Related