This app classifies images based on any TFLite image classification model

Overview

Flutter Image Classification

This app classifies images based on any TFLite image classification model. A sample model has been provided to classify cats vs. dogs.

Alt text

Instructions to use on your tflite model

  1. Install flutter & clone repository.
  2. Modify the model in assets/tflite/[name].tflite.
  3. Modify the class names in assets/tflite/[name].txt represent your classes (see example below).
  4. Modify both [name].tflite and [name].txt in pubspec.yaml (see example below).
  5. Change the loadModel function in lib/main.dart to load your [name].tflite and [name].txt (see example below).
  6. Run Flutter app. The tflite package uses v1 embeddings so we need to pass in --ignore-deprecation.
flutter run --ignore-deprecation

cats_dogs.txt

Cat
Dog

pubspec.yaml

assets {
    - assets/tflite/[name].tflite
    - assets/tflite/[name].txt
}

lib/main.dart

String res = await Tflite.loadModel(
    model: "assets/tflite/[name].tflite",
    labels: "assets/tflite/[name].txt",
) ?? '';
You might also like...

A plugins pick Image & camera for Flutter

A plugins pick Image & camera for Flutter

christian_picker_image Flutter plugin that allows you to upload multi image picker on iOS & Android. Getting Started ChristianImagePicker is an all-in

Apr 29, 2022

Open source geo based video sharing social app created with Flutter, Supabase and lots of love 💙💙💙

Open source geo based video sharing social app created with Flutter, Supabase and lots of love 💙💙💙

Spot Take a virtual journey around the world with Spot. Spot is a geo-tagged video sharing app, meaning every video recorded in Spot is saved on a loc

Jan 3, 2023

a wrapper for LabSound(graph-based audio engine)

lab_sound_flutter WIP lab_sound_flutter is the LabSound wrapper for Flutter. Currently only the Android platform is available, other platforms have en

Dec 11, 2022

Advanced video player based on video_player and Chewie for flutter

Advanced video player based on video_player and Chewie for flutter

Better Player Advanced video player based on video_player and Chewie. It's solves many typical use cases and it's easy to run. Introduction This plugi

Dec 22, 2021

A flutter based music player for subsonic compatible music servers.

A flutter based music player for subsonic compatible music servers.

subsound A subsonic music player. Screenshots Release todo fix random breakage of player sometimes. seems like onStart is not working after background

Oct 6, 2022

A Flutter media player plugin for iOS and android based on ijkplayer

A Flutter media player plugin for iOS and android based on ijkplayer

Flutter media player plugin for android/iOS based on ijkplayer.

Jan 4, 2023

A view for video based on video_player and provides many basic functions.

flutter_video_view A view for video based on video_player and provides many basic functions. Getting Started This project is a starting point for a Fl

Dec 9, 2022

Beautiful-Music-App-UI - Music App page UI Using Flutter

Beautiful-Music-App-UI - Music App page UI Using Flutter

Beautiful Music App UI A Flutter App Music UI developed in Flutter Getting Start

Jun 17, 2022

BlackHole - A Music Player App made with Flutter

BlackHole - A Music Player App made with Flutter

BlackHole - A Music Player App made with Flutter

Jan 2, 2023
Owner
Daniel Alexander
builds and breaks stuff
Daniel Alexander
Flutter plugin for selecting multiple images from the Android and iOS image library

Flutter plugin for selecting multiple images from the Android and iOS image library, taking new pictures with the camera, and edit them before using such as rotating, cropping, adding sticker/filters.

Weta Vietnam 91 Dec 19, 2022
Image Picker Load image from camera and gallery

image_choose A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if

MD TAMIM ISLAM KHAN 2 Sep 12, 2022
Image Editor Plugin with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories.

ImageEditorPro Image Editor Plugin with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories. To start w

Zeeshan 206 Dec 2, 2022
Image Extensions A wrapper library for image package with some extra functions.

A wrapper library for image package with some extra functions. Installation Add this to your package's pubspec.yaml file: dependencie

Vanxh 1 Jan 15, 2022
BC Image Editor - Flutter package for image editing

BC Image Editor You can edit image using this package and also you can create flex preview image by setting foreground to null. For now, you can use o

Berkay CEYLAN 9 Nov 21, 2022
A Flutter project thats shows you how to upload, view and delete images using firebase cloud storage

firebase_image_upload A Flutter project thats shows you how to upload, view and

null 4 Nov 21, 2022
WaVe - an audio streaming platform which gives the best user experience without any compromise in the audio quality

WaVe is an audio streaming platform which gives the best user experience without any compromise in the audio quality, and there is even space for the users to explore their creativity. And makes it more efficient with the AI features.

OmarFayadhd 1 May 31, 2022
A flutter package for iOS and Android for applying filter to an image

Photo Filters package for flutter A flutter package for iOS and Android for applying filter to an image. A set of preset filters are also available. Y

Ansh rathod 1 Oct 26, 2021
Flutter package for creating a fully customizable and editable image widget.

EditableImage Flutter Package Flutter package for creating a fully customizable and editable image widget. The package has been written solely in Dart

Bulent Baris Kilic 5 Jun 13, 2022
A small image utils package for flutter written in dart.

flutter_simple_image_utils A small image utils package for flutter written in dart. Usage: import 'package:flutter_simple_image_utils/flutter_simple_i

Hamlet D'Arcy 1 Nov 18, 2021