I have images that aren't timestamped and I need to rename and timestamp them for a project.
Here's an example of the timestamp, written at the top of every image:
So the question is, is there a way I can translate (detect) each number on the timestamp in the image shown? Perhaps I could use cv2
or tensorflow
to do this?
Also I was thinking even training a decision tree if I were to crop each digit and create a series of same sized 1 channel arrays to train on.
Thoughts?