A program which counts the number of black and red circles in .png file.
The input .png file should contain only black/red circles and rectangles separated with green background.
$ pip install -r requirements.txt
$ python3 main.py 'your_filepath'
$ python3 main.py tests/test1.png
Read circles: 3
Black circles: 1
test1.png file looks like this:
To run tests type:
$ pytest
