https://github.com/kenttonino/sw-image-video-reader
A sample Python program that read and resize image and video.
https://github.com/kenttonino/sw-image-video-reader
bash makefile opencv-contrib-python python3 venv-python
Last synced: 17 days ago
JSON representation
A sample Python program that read and resize image and video.
- Host: GitHub
- URL: https://github.com/kenttonino/sw-image-video-reader
- Owner: kenttonino
- Created: 2022-11-19T04:49:09.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2025-01-12T03:44:33.000Z (over 1 year ago)
- Last Synced: 2025-10-24T16:33:05.691Z (7 months ago)
- Topics: bash, makefile, opencv-contrib-python, python3, venv-python
- Language: Python
- Homepage:
- Size: 10.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
> - A sample Python program that read and resize an image and video.
## Setup
> - Setup a virtual environment.
```sh
python3 -m venv venv
```
> - Activate the virtual environment.
```sh
source venv/bin/activate
```
> Install the packages.
```bash
pip3 install -r requirements.txt
```
> Run the programs.
```bash
# 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
```