I'm making kivy app to recognize character with camera on real-time. However, there is no document except recognizing face. I think there is a way because picamera is almost doing similar thing (creating opencv file from camera).
Would someone tell me to achieve this?
* PS * I'm on the way to capture image when camera sees the number, but I don't know how to make that trigger. Now this is the code, and I want to know when to break true sentence.
cap = cv2.VideoCapture(0)
while(True):
ret, image = cap.read()
cv2.imshow('image', image)
results = tes.image_to_string(image, boxes=True)
if results:
break
cap.release()
cv2.destroyAllWindows()
print(results)
but this one is too slow