https://github.com/kentlouisetonino/sw-image-video-reader
A sample Python program that read and resize image and video.
https://github.com/kentlouisetonino/sw-image-video-reader
bash makefile opencv-contrib-python python3 venv-python
Last synced: 2 months ago
JSON representation
A sample Python program that read and resize image and video.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/sw-image-video-reader
- Owner: kentlouisetonino
- Created: 2022-11-19T04:49:09.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2025-01-12T03:44:33.000Z (4 months ago)
- Last Synced: 2025-02-16T23:14:55.950Z (2 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
```