Parking detection with TinyML
This repository contains the code that runs on a "hub" device the automatic parking detection system. Right now, this repo contains the HTTP server code to listen for plate images from "meter" devices and pass them through an EasyOCR model for plate number recognition.
git clone https://github.com/nlitz88/parkingdetection_hub.git
cd ./parkingdetection_hub
python3 -m venv venv
source ./venv/bin/activate
Installing PyTorch can look a bit different depending on what kind of platform you're working on, so it's best to consult their documentation and install it separately, first. https://pytorch.org/get-started/locally/
pip install -r requirements.txt
python demo_server.py