handle all rotation angles by abde0103 · Pull Request #515 · JaidedAI/EasyOCR (original) (raw)
Hello, I want to detect the numbers in the picture, but it still can't be detected after rotation. Is there any problem with my usage? result = reader.readtext(img1, rotation_info=[-10, 10, 20, 30, 45])
Nothing is wrong with your usage. The current version tests you different rotation angles and chooses the optimal one : the one which maximizes the prediction confidence, so the returned character detection will be done on one rotation angle which corresponds to the best one. In your case, you will not be able to read all the characters because they are slanted at different angles.
