This is a simple flutter app for image classification using ResNet50. The user can upload the image, the image will be sent to the server and processed over there and send back the results to the Flutter app where it will be displayed with the prediction result and how confident it is (confidence score).
- I made a Flask application of the same, you can check it out in this link Flask App. I hosted this Flask app in Google cloud run through the docker image that I created and use this as my server for the flutter app.
Flutter-Flask-Output.1.mp4
-
Git clone the repo.
git clone https://github.com/thespectacular314/Flutter-To-Flask cd Flutter-To-Flask
-
Install the required setup for running Flutter apps.
-
Install the dependencies from
pubspec.yaml
-
Run the
main.dart
file found inlib
folder.flutter run