This app will perform very basic level video enhancement skills using Open-CV mostly for the beginners. However, there will be a separate complex video solution will show case in the future.
(The following instructions apply to Posix/bash. Windows users should check here.)
First, clone this repository and open a terminal inside the root folder.
Create and activate a new virtual environment (recommended) by running the following:
python3 -m venv venv
source venv/bin/activate
Install the requirements:
pip install -r requirements.txt
Run the dummy event generation VideoRestore-App:
python restoreOldVideo.py
- To learn more about Open-CV, check out our documentation.
- To learn more about Matplotlib, check out our documentation.