Qr code scan python

Saved searches

Use saved searches to filter your results more quickly

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.

qrcode-scanner

Here are 95 public repositories matching this topic.

hongquan / CoBang

A QR code scanner desktop app for Linux

Eric-Canas / QReader

Robust and Straight-Forward solution for reading difficult and tricky QR codes within images in Python. Powered by YOLOv7

Helias / QR-Scanner-Bot

Telegram Bot to scan QR code

Pavankunchala / Deep-Learning

This repo provides projects on deep-learning mainly using Tensorflow 2.0

rahul2002m / QR_Attendance

This project is an attendance system which provides attendance on scanning QR code. The attendance is stored in Excel sheet named with the date of attendance taken. In this folder a file named Generate.py is used to generate the QR code for given input file. Attend.py file is for scanning the QR code

Читайте также:  Как сделать изображение на весь фон css

meticulousCraftman / QR-Code

A real-time QR Code scanning program using webcam and Python 3

somdipdey / Encrypted_QR_Code

Use this Python3 package to encrypt messages and embed in QR code, and decrypt the message back.

coder12341 / qr-tools

A simple, yet powerful utility to scan and generate QR-Codes.

palahsu / QR-CodeGen

QR Code Generator. You Can Put On Your Link or Any Data. QR Code Generator for URL, vCard, and more. Add logo, colors, frames, and download in high print quality. Get your free QR Codes now!

BaseMax / DetectQRCodeOpenCV

Detect QRCode and BarCode using OpenCV in Python

AbdallahHemdan / QR-Scanner

📱 QR code decoding program, takes input from your device or from built-in camera using Opencv , zbar..

aspose-barcode-cloud / aspose-barcode-cloud-python

Repository contains Python Library for communicating with the Aspose.BarCode Cloud API

vasani-arpit / image-qr-code-scanner

An NPM package for node which takes image path and finds and decodes QR codes in it. The only node package which supports/decodes multiple QR codes in a single image.

dharwinrvj / barcode-scanner

Scanner for decoding Barcodes and QRcodes

sethhardik / hcl-internship-project

internship project at HCL TECHNOLOGIES

Sbboss / House-Resource-Management-Tracking-and-Billing-HRMTB-System-Using-QRcode

All the home supply are managed by QRcode and real time database feeding and bill generation.

Pratyay360 / Qr-code-scanner

Python App To Scan Qr Codes

IliesChibane / PFE_QR-code-system-for-the-management-of-PhD-student-and-the-staff-university-using-CNN_YOLOv5

Desktop application for PhD students management using a QR code system with YoloV5 used by the university of science and technology Houari Boumediene (USTHB)

ArlindNocaj / document-barcodes

Docbarcodes extracts 1D and 2D barcodes from scanned PDF documents or images. It can be used to automate extraction and processing of all kind of documents.

codekhal / autonomous-bot

A self driving bot made using Raspberry Pi, OpenCV and UNO used in real-time detection and text recognition in Barcodes and QR codes

Читайте также:  Javascript slice with array

Improve this page

Add a description, image, and links to the qrcode-scanner topic page so that developers can more easily learn about it.

Add this topic to your repo

To associate your repository with the qrcode-scanner topic, visit your repo’s landing page and select «manage topics.»

Источник

Saved searches

Use saved searches to filter your results more quickly

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.

Python QR Code Reader and Scanner

License

stevie1mat/python_qr_code

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Python QR Code Scanner and Reader

Python QR Code Scanner and Reader using webcam. It can also be used to scan Barcodes.

Читайте также:  Xml api in php

Star ⭐ the repo if you like what you see 😉 .

Any Operating System (ie. MacOS X, Linux, Windows)

VSCode or Pycharm. Any text editor will also do the job.

Latest Version of Python. Get it from here. Latest Version of PIP

Install these using pip command. (Eg. pip install qrcode)

qr = qrcode.QRCode( version = 15, box_size = 10, border = 5, ) 

version : This tells us how complicated qr code can be, larger the no, more complex will be the QR code generated.
box_size : Size of the QR Code box
border : Outer white space

data = 'https://www.youtube.com/channel/UCLYAvOLIC0vYV9mnIaqXLXQ' 
barcode_info = barcode.data.decode('utf-8') cv2.rectangle(frame, (x, y),(x+w, y+h), (0, 255, 0), 2) 
font = cv2.FONT_HERSHEY_DUPLEX cv2.putText(frame, barcode_info, (x + 6, y - 6), font, 2.0, (255, 255, 255), 1) 
with open("barcode_result.txt", mode ='w') as file: file.write("Recognized Barcode:" + barcode_info) 
camera = cv2.VideoCapture(0) ret, frame = camera.read() 
while ret: ret, frame = camera.read() frame = read_barcodes(frame) cv2.imshow('Barcode/QR code reader', frame) if cv2.waitKey(1) & 0xFF == 27: break 
camera.release() cv2.destroyAllWindows() 

Источник

Оцените статью