Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/readme #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,6 @@ ENV/

# mypy
.mypy_cache/

# idea
.idea/*
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ This project has more features than just licenes plate detection, here are some
- Import all images from folder making it easy to analyze multiple images at once
Prediction of approximate vehicle size height and length

### Getting Started
- Create and activate virtual environment for your OS - [Environment Setup](./docs/environments.md#Environment Setup)
- Install project requirements requirements -
```python
pip install -r requirements.txt
```


ToDos:

Expand Down
25 changes: 25 additions & 0 deletions docs/environments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[Back to Home](../README.md)

# Environment Setup

## Mac/Linux
Create virtual environment
```pythonn
python -m venv env
```

Activate virtual environment
```python
source env/bin/activate
```

## Windows
Create virtual environment
```python
py -3.7 -m venv env
```

Activate virtual environment
```python
source env/Scripts/activate
```
23 changes: 23 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
certifi==2020.6.20
chardet==3.0.4
cycler==0.10.0
decorator==4.4.2
idna==2.10
imageio==2.9.0
kiwisolver==1.2.0
matplotlib==3.3.2
networkx==2.5
numpy==1.19.2
opencv-python==4.4.0.44
Pillow==7.2.0
pyparsing==2.4.7
PySimpleGUI==4.29.0
pytesseract==0.3.6
python-dateutil==2.8.1
PyWavelets==1.1.1
requests==2.24.0
scikit-image==0.17.2
scipy==1.5.2
six==1.15.0
tifffile==2020.9.29
urllib3==1.25.10