diff --git a/.gitignore b/.gitignore index 7bbc71c..bf9c984 100644 --- a/.gitignore +++ b/.gitignore @@ -99,3 +99,6 @@ ENV/ # mypy .mypy_cache/ + +# idea +.idea/* \ No newline at end of file diff --git a/README.md b/README.md index 5f2e035..2fd8941 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docs/environments.md b/docs/environments.md new file mode 100644 index 0000000..53eb32f --- /dev/null +++ b/docs/environments.md @@ -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 +``` \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ae3d318 --- /dev/null +++ b/requirements.txt @@ -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