Home > Back-end >  Face Swap and Face Detection/Recognition in Flutter
Face Swap and Face Detection/Recognition in Flutter

Time:04-24

How does one go about creating a Face Swap mechanism in Flutter?

Is it possible to do real time face swap in Flutter?

Can anyone point me in the right direction?

Thank you

CodePudding user response:

You’ll probably need a good plugin to do all the hard work for you. I recommend Google’s ML Kit on Flutter, as it is the most popular way to run on-device ML with Flutter.

The face detection plugin is what you want. You would basically get the face oval shape with face contour detection and swap those shapes. And this can be done real-time with a given video input.

But you should keep in mind that the plugin is on v0.0.1. If you’re aiming for production, you’d better do that with Swift or Kotlin.

CodePudding user response:

There are multiple ways to archive this thing in Flutter. It might be in real-time or with some delay of seconds.

You can use one of these packages.

  1. Open CV
  2. TensorFlow
  3. Google's ML Kit

It might be possible you will not get good support from openCV and TensorFlow in a flutter. But you can integrate the OpenCV/TensorFlow native libs or SDK for both Android and IOS and invoke them through platform channels

There is also one more possible solution but it will definitely have a delay. For this kind of ML project python have great support of library and projects.

You can set up a python project which is responsible for face swapping it takes input from the flutter app (using rest API or socket) and return the output image after face-swapping.

Some great face swap projects are available on GitHub you can look into it.

  • Related