Skip to content

Instantly share code, notes, and snippets.

@YHaruoka
Created May 26, 2022 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YHaruoka/693cce04f81eb9671498deeb73a2425a to your computer and use it in GitHub Desktop.
Save YHaruoka/693cce04f81eb9671498deeb73a2425a to your computer and use it in GitHub Desktop.
import cv2
print("OpenCV Version: " + str(cv2.__version__))
# Creating QR Code
QRencoder = cv2.QRCodeEncoder.create();
encoded_info = "http://tecsingularity.com/"
qrcode = QRencoder.encode(encoded_info)
# Saving image
cv2.imwrite('qr.png',qrcode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment