alpamys
alpamys

Reputation: 3

How to recognize object in photo with flutter?

I have a book with pictures. The task is that a each picture is attached to video, and when the camera hovers over the picture, the application should open another screen and play the video associated with the photo. i tried to use teachablemachine, but it cant detect if there's too many photos. Any ideas is highly appreciated. Thanks

Upvotes: 0

Views: 4865

Answers (2)

Jose Manuel
Jose Manuel

Reputation: 110

You can use Tensoflow Lite: https://www.tensorflow.org/lite You have some dependencies for flutter, for example: https://pub.dev/packages/tflite

Upvotes: 1

dshukertjr
dshukertjr

Reputation: 18750

You could use firebase's Object Detection and Tracking and Camera Plugin's image stream feature.

Basically, you would process each frame you get from camera plugin with Firebase's ML feature, and once you detect an object you can perform any action with it.

Upvotes: 2

Related Questions