Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/youhaveme9/detection-notification-sns-processing

License plate detection model and sns processing for ethos 2022
https://github.com/youhaveme9/detection-notification-sns-processing

jupyter-notebook object-detection opencv python pytorch sqlalchemy tesseract-ocr yolov5

Last synced: about 2 months ago
JSON representation

License plate detection model and sns processing for ethos 2022

Awesome Lists containing this project

README

        

# License Plate number detection and notification system for Smart Naka
For ethos 2022 IIT Guwahati

## How to run on local system?

1. Clone the repo

```git
git clone https://github.com/Roshaen/detection-notification-sns-processing.git
```

2. Create virtual enviroment

```bash
python -m venv env
```
```bash
source env/bin/activate
```

3. Install required dependencies

```bash
pip install -r requirements.txt
```

4. Clone yolov5 repo and install dependencies

```bash
git clone https://github.com/ultralytics/yolov5.git
cd yolov5
pip install -r requirements.txt
cd ..
```

5. Add pytesseract to the system path


Refer this link - https://pypi.org/project/pytesseract for pytesseract installation

6. Run main.py

```bash
python3 main.py
```