Skip to content

Commit b58dff6

Browse files
Added Qr Code Scanner script (#361)
* all qr code scanner files added * final main readme commits * renamed folder
1 parent 33ba19f commit b58dff6

File tree

5 files changed

+208
-115
lines changed

5 files changed

+208
-115
lines changed

QR Code Scanner/Readme.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# QR Code Scanner Script
2+
3+
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.
51+
52+
## License

QR Code Scanner/qr_code.png

60 KB
Loading

QR Code Scanner/qr_scanner.py

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import cv2
2+
from pyzbar.pyzbar import decode
3+
from tkinter import filedialog
4+
from tkinter import Tk
5+
from PIL import Image
6+
7+
def scan_qrcode(image_path):
8+
# Load the image using OpenCV
9+
img = cv2.imread(image_path)
10+
11+
# Decode the QR code in the image
12+
decoded_objects = decode(img)
13+
14+
# Check if any QR code is found
15+
if decoded_objects:
16+
for obj in decoded_objects:
17+
print(f"QR Code Detected: {obj.data.decode('utf-8')}")
18+
else:
19+
print("No QR code detected in the image.")
20+
21+
def open_file():
22+
# Open a file dialog to allow the user to select an image file (PNG or JPG)
23+
root = Tk()
24+
root.withdraw() # Hide the main tkinter window
25+
file_path = filedialog.askopenfilename(
26+
title="Select Image",
27+
filetypes=[("Image files", "*.png;*.jpg;*.jpeg")]
28+
)
29+
30+
if file_path:
31+
print(f"Selected file: {file_path}")
32+
scan_qrcode(file_path)
33+
else:
34+
print("No file selected.")
35+
36+
if __name__ == "__main__":
37+
open_file()

QR Code Scanner/requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
opencv-python
2+
pyzbar
3+
Pillow
4+
tk

0 commit comments

Comments
 (0)