Mine generated this error: AttributeError: 'builtin_function_or_method' object has no attribute 'encode'
@nunbu76013 жыл бұрын
Thank you very much, very interesting. I also want to learn about barcode making and scanning。
@srivatsansriram76203 жыл бұрын
are u using visual studio code?
@AKPython3 жыл бұрын
Yes.!
@fewdays_41573 жыл бұрын
I am founding error Syntaxerror: invalid syntax jedi [1,8] Indentationerror: expected an indented block jedi [55/1] Indentationerror: expected an indented block jedi [61/1] Indentationerror: expected an indented block jedi [68/1] Indentationerror: expected an indented block jedi [74/1] About - where you are giving tutorial about how to make game with python (ping pong)
@BTS-LIVE_lan2 жыл бұрын
bro you really awesome . thankyou
@HemanthKumar-pw5nt2 жыл бұрын
Can we come back automatically and scan again or in background scan should run once shown new web page should open?
@AKPython2 жыл бұрын
Yes it will do I guess
@Bhavani45122 жыл бұрын
Hi I am Rani, Can I use string instead of URL in QRcode generation main thing is I want to show it on screen
@sachin_sharma_vlogs2 жыл бұрын
yes you can use string also instead of url
@parthdoshi55323 жыл бұрын
sir how to convert these programs to gui based desktop apps
@AKPython3 жыл бұрын
Simple Integrate with Tkinter
@vanshikadpatil16 Жыл бұрын
How to track who uses a scanner to scan their QR Code.. plz provide code for it
@xavier-bv4zw2 жыл бұрын
Bhai ye code detect krke webbrowser na use krke sirf plain text extract kaise krenge???
@AKPython2 жыл бұрын
Couldn't understand please interact through english
@sandybatra2133 жыл бұрын
Brother this tutorial will really help me to encrypt database connection string or any other confidential text. Thank you so much for this tutorial! I have question, can we convert a image to an byte array and convert to a string and then make a qr code of that string and then if we want our image to show we will scan that qr code to show the image. For showing the image can a byte array be converted to that previous image?
@nikhilmaurya66172 жыл бұрын
bro i copied your code but in my pc this is using very high cpu even lagging
@AKPython2 жыл бұрын
Is it don’t require that much cpu
@error-my9ut2 жыл бұрын
Pls don't copy codes from geeksforgeeks
@AKPython2 жыл бұрын
Hey I contributed this code to geeks for Geeks 😁
@error-my9ut2 жыл бұрын
@@AKPython that is gr8
@error-my9ut2 жыл бұрын
I was making a project on ticketless entry system in libraries and monuments so i was using qr code as a medium for that, it's actually a sih project, thanks for the help
@AKPython2 жыл бұрын
Great 👍 support
@error-my9ut2 жыл бұрын
@@AKPython import cv2 import webbrowser cap = cv2.VideoCapture(0) # initialize the cv2 QRCode detector detector = cv2.QRCodeDetector() while True: _, img = cap.read() data, bbox, _ = detector.detectAndDecode(img) if data: a=data cv2.destroyAllWindows() break cv2.imshow("scanner",img) if cv2.waitKey(1)==27: cv2.destroyAllWindows() break b=webbrowser.open(str(a)) cap.release(a) cap.release() cv2.destroyAllWindows() there were some problems with code such as when your task is over then also your webcam remained open and the esc key now work in place of q else thanks for support