This exercises are based on this tutorial: https://pythonprogramming.net/loading-images-python-opencv-tutorial/
You need to install miniconda and create a virtual environment as follow:
> conda create -n opencv python=3.7Make sure to install the requirements on your virtual environment:
> conda activate opencv
> pip3 install matplotlib numpy opencv-pythonTo execute the exercises you can use the play bash script as follow:
To run an exercise
> ./play run 01_simpleIf you need to modify the excercise code you can do it as follow:
> ./play modify 01_simpleTo add a new exercise
> ./play new exercise_name