THANK YOU SO MUCH. I'VE BEEN TRYING TO DO THIS FOR 5 HOURS AND YOUR TUTORIAL HELPED ME. TYSM IM SO TIRED RN I AM GOING BACK TO SLEEP NOW
@cadebrown116Ай бұрын
The thing I did to make this work is change the cv2.imread to the file path instead of the file name, as shown in the video. Thanks for the help, Steve!
@coding101withsteve8Ай бұрын
Glad you were able to make it work ☺😇
@solomon5050 Жыл бұрын
I have a prob. When I tried to install tesseract, my Windows not allowing to install saying the application is not Microsoft verified app. So please suggest me how can I overcome this to get it installed. TIA
@openvr-app Жыл бұрын
i tried so many different ways to get rid of this error, help me
@congnguyenchi55385 ай бұрын
Hi, this video is awesome! I was wondering if your Python project could do image text conversion to Unicode characters? This would be a very useful feature. Looking forward to hearing your thoughts on this. Thanks! 😍
@coding101withsteve84 ай бұрын
Thank you ☺️ For converting the text to unicode characters, you can use ord() and format() methods as shown below. r'\u{:04X}'.format(ord(character_to_pass)) Eg: y = r'\u{:04X}'.format(ord("c")) print(y) Output: \u0063