You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script enables users to scan and decode QR codes from image files (PNG and JPG formats). It uses OpenCV and Pyzbar for decoding QR codes and provides a simple file dialog for selecting images on your local machine.
4
+
5
+
## Requirements
6
+
7
+
To run this script, you'll need Python 3.x installed on your machine. The required libraries are listed in `requirements.txt`, including:
8
+
9
+
-**opencv-python**: For image processing.
10
+
-**pyzbar**: For decoding QR codes.
11
+
-**Pillow**: Required for handling image formats.
12
+
-**tk**: Provides a file dialog for image selection.
13
+
14
+
## Installation
15
+
16
+
1.**Clone the repository** (or download the script and `requirements.txt` directly):
17
+
```bash
18
+
git clone <repository_url>
19
+
cd<repository_directory>
20
+
```
21
+
2.**Install dependencies:**(Run the following command to install the necessary libraries from `requirements.txt`:)
22
+
23
+
```bash
24
+
pip install -r requirements.txt
25
+
```
26
+
27
+
## Usage
28
+
29
+
1.**Run the script** (Execute the QR code scanner script using:)
30
+
```bash
31
+
python qr_code_scanner.py
32
+
```
33
+
2.**Select an Image**
34
+
- A file dialog will open, allowing you to select a PNG or JPG image containing a QR code.
35
+
- Once an image is selected, the script will attempt to decode any QR code present in the image.
36
+
3.**View the Output**
37
+
- If a QR code is detected, its contents will be displayed in the terminal.
38
+
39
+
## Requirements.txt File
40
+
41
+
The `requirements.txt` file lists all dependencies for the QR code scanner script. This file ensures that the correct versions of each library are installed to avoid compatibility issues. Libraries in `requirements.txt` include:
42
+
43
+
```bash
44
+
opencv-python
45
+
pyzbar
46
+
Pillow
47
+
tk
48
+
```
49
+
50
+
Make sure to install these libraries by running pip install -r `requirements.txt` before using the script.
0 commit comments