- A sample Python program that read and resize an image and video.
- Setup a virtual environment.
python3 -m venv venv
- Activate the virtual environment.
source venv/bin/activate
Install the packages.
pip3 install -r requirements.txt
Run the programs.
# Run the re_scale.py program.
make re-scale
# Run the read_image.py program.
make read-image
# Run the read_video.py program.
make read-video