QReader icon indicating copy to clipboard operation
QReader copied to clipboard

Micro QR support

Open MohitBurkule opened this issue 8 months ago • 0 comments

I have tried running it on micro QRs but couldn't get it to decode. Are you planning to add micro QR / ArUco / AprilTags support anytime soon? Micro_QR_Example

detector = QReader()
img = cv2.cvtColor(cv2.imread('Micro_QR_Example.png'), cv2.COLOR_BGR2RGB)
QRs = detector.detect_and_decode(image=img)
for QR in QRs:
    print(QR)

returns None

MohitBurkule avatar Dec 13 '23 19:12 MohitBurkule