- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Sử dụng scan đọc qrcode bằng Python trong winform
Xin chào các bạn, bài viết hôm nay mình tiếp tục hướng dẫn các bạn cách đọc mã vạch QR code từ camera bằng Python và trả kết quả vào Richtextbox C#
, Winform.
[C#] How to Scan QRcode From Camera Python to Winform
Dưới đây, là giao diện demo ứng dụng của mình:
Ở giao diện trên các bạn, thấy từ app ứng dụng C#, winform mình sẽ gọi ứng dụng đọc qrcode bằng Python lên.
Và sau đó, kết quả scan được trả về như hình bên dưới.
Source code Scan QR Code Python:
import cv2
import numpy as np
from pyzbar.pyzbar import Decoded, decode
import keyboard
cap = cv2.VideoCapture(0)
cap.set(3, 640)
cap.set(4, 480)
while True:
success, img = cap.read()
for barcode in decode(img):
# print(barcode.data)
myData = barcode.data.decode('utf-8')
print(myData, flush=True)
pts = np.array([barcode.polygon], np.int32)
pts = pts.reshape((-1, 1, 2))
cv2.polylines(img, [pts], True, (255,0,255), 5)
pts2 = barcode.rect
cv2.putText(img, myData, (pts2[0], pts2[1]), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (255, 165,0), 2)
cv2.imshow('Scan QR Code - https://laptrinhvb.net', img)
cv2.waitKey(1)
if keyboard.is_pressed('q'):
break
Các bạn cài đặt 3 thư viên dưới đây để chạy project, trên python bằng cách sử dụng lệnh pip
# using pip install three library below
# pip install opencv-python
# pip install pyzbar
# pip install keyboard
Chi tiết bạn có thể xem video hướng dẫn cài đặt thư viện:
Full source code C# scan qrcode:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ScanQRcodeWithPython
{
public partial class Form1 : Form
{
private object syncGate = new object();
private Process process;
private StringBuilder output = new StringBuilder();
private bool outputChanged;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
lock (syncGate)
{
if (process != null) return;
}
output.Clear();
outputChanged = false;
richTextBox1.Text = "";
process = new Process();
process.StartInfo.FileName = @"C:\Users\nguye\AppData\Local\Programs\Python\Python39\python.exe";
process.StartInfo.CreateNoWindow = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.Arguments = Application.StartupPath + @"\scanqrcode.py";
process.StartInfo.RedirectStandardOutput = true;
process.OutputDataReceived += OnOutputDataReceived;
process.Exited += OnProcessExited;
process.Start();
process.BeginOutputReadLine();
}
private void OnOutputDataReceived(object sender, DataReceivedEventArgs e)
{
lock (syncGate)
{
if (sender != process) return;
output.AppendLine(e.Data);
if (outputChanged) return;
outputChanged = true;
BeginInvoke(new Action(OnOutputChanged));
}
}
private void OnOutputChanged()
{
lock (syncGate)
{
richTextBox1.Text = output.ToString();
outputChanged = false;
}
}
private void OnProcessExited(object sender, EventArgs e)
{
lock (syncGate)
{
if (sender != process) return;
process.Dispose();
process = null;
}
}
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.SelectionStart = richTextBox1.Text.Length;
richTextBox1.ScrollToCaret();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://laptrinhvb.net");
}
}
}
Thanks for watching!