Skip to content

Instantly share code, notes, and snippets.

@furkantoptass
Last active March 4, 2021 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furkantoptass/9ada4dad51ea70ac0263ce3b8ca19951 to your computer and use it in GitHub Desktop.
Save furkantoptass/9ada4dad51ea70ac0263ce3b8ca19951 to your computer and use it in GitHub Desktop.
Red or Blue Cup main.dart code
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:tflite/tflite.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(),
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
bool _isLoading;
File _image;
List _output;
var image;
@override
void initState() {
// TODO: implement initState
super.initState();
_isLoading = true;
loadMOdel().then((value) {
setState(() {
_isLoading = false;
});
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Red or Blue Cup Project"),
),
body: _isLoading
? Container(
alignment: Alignment.center,
child: CircularProgressIndicator(),
)
: Container(
alignment: Alignment.center,
child: Column(
children: [
_image == null ? Container() : Image.file(_image),
SizedBox(height: 16.0),
_output == null
? Text("Resim Yükleyiniz...")
: Text("Sonuç: " + "${_output[0]["label"]}")
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
chooseImage();
},
child: Icon(
Icons.image,
),
),
);
}
chooseImage() async {
image = await ImagePicker().getImage(
source: ImageSource.gallery,
maxWidth: 800.0,
maxHeight: 600.0,
imageQuality: 80);
if (image == null) return null;
setState(() {
_isLoading = true;
_image = File(image.path);
});
runOnModel(_image);
}
runOnModel(File image) async {
var output = await Tflite.runModelOnImage(
path: image.path,
numResults: 2,
threshold: 0.5,
imageMean: 127.5,
imageStd: 127.5);
setState(() {
_isLoading = false;
_output = output;
});
}
loadMOdel() async {
await Tflite.loadModel(
model: "assets/model_unquant.tflite", labels: "assets/labels.txt");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment