https://github.com/arvind-4/camera-with-pyqt5
Simple Camera with PyQt5
https://github.com/arvind-4/camera-with-pyqt5
camera camera-application camera-image pyqt5 pyqt5-desktop-application pyqt5-gui pyqt5-gui-application python python-desktop-application python-windows python-windows-application python3 save-image
Last synced: 5 months ago
JSON representation
Simple Camera with PyQt5
- Host: GitHub
- URL: https://github.com/arvind-4/camera-with-pyqt5
- Owner: arvind-4
- License: mit
- Created: 2021-06-18T15:35:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-05T14:51:24.000Z (almost 4 years ago)
- Last Synced: 2025-05-15T19:11:30.571Z (7 months ago)
- Topics: camera, camera-application, camera-image, pyqt5, pyqt5-desktop-application, pyqt5-gui, pyqt5-gui-application, python, python-desktop-application, python-windows, python-windows-application, python3, save-image
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Camera in Python
Capture Images and Save them using PyQt5
# How to Run this Locally
### Step 1: Create a Virtual Environment
```
pip install virtualenv
cd /path/to/folder
mkdir camera
cd camera
virtualenv .
source scripts/activate
```
### Step 2: Clone Repository and Install Dependencies
```
cd /path/to/folder/camera
git clone https://github.com/Arvind-4/Camera-with-PyQt5.git .
pip install -r requirements/requirements.txt
```
### Step 3: Run the Code
```
cd /path/to/folder/camera
python src/main.py
```