https://github.com/michdo93/flask-opencv-webcam-stream
An example of how I use OpenCV to receive the camera stream from my webcam and transfer it to my HTML website via Flask.
https://github.com/michdo93/flask-opencv-webcam-stream
Last synced: 6 days ago
JSON representation
An example of how I use OpenCV to receive the camera stream from my webcam and transfer it to my HTML website via Flask.
- Host: GitHub
- URL: https://github.com/michdo93/flask-opencv-webcam-stream
- Owner: Michdo93
- Created: 2024-05-03T14:36:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-03T14:38:34.000Z (about 2 years ago)
- Last Synced: 2025-10-14T13:05:03.201Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask-OpenCV-Webcam-Stream
An example of how I use OpenCV to receive the camera stream from my webcam and transfer it to my HTML website via Flask.
## Pre-Installation
You have to install `Flask` and `OpenCV`:
```
python -m pip install flask
python -m pip install opencv-python
```
## Usage
You can run it with:
```
python flask_test.py
```