shaqian / flutter_realtime_detection

Real-time detection demo for Flutter tflite plugin
842 stars 301 forks source link

Final Result #24

Open mady143 opened 4 years ago

mady143 commented 4 years ago

Hi @panmari @erjanmx @mitchross @shaqian @Techno-Disaster

I had successfully implemented the tflite package in flutter but at last we are getting the output in that we are getting like {{confidence: 0.6352049112319946, index: 9, label: corn maize }} i want to display the only label with specific font and style can you explain how can i get that

Thanks and Regards, Manikantha Sekhar.

Tanmay-R-Choudhary commented 4 years ago

You can do that by entering output[0]['label'].toString();

That is how I did it...