Running tflite file

Hey, new here!
I am working on a project to detect bottles and cans using RPi 4 and a camera
I have been using Tensorflow Lite due to a guide i read, saying it would work the best with the product.

I created a tfile model but i couldnt find how to run it LIVE using the camera
is there any guide in here how to do so? when i try to run it, i get errors (about index going out of range etc)

thanks in advance, i feel im very close to get this working :slight_smile:

Hi @tobi_tobi,

You can use PiCamera library for LIVE capturing and pass those captured images to tflite model for making inference. Please refer to this document for implementation.

Thank You