Open ahmadmustafaanis opened 2 years ago
Following by https://www.jaided.ai/easyocr/documentation/ Using reader.recognize
reader = easyocr.Reader(lang_list = ['en'],gpu = True)
reader.recognize(image_path)
I want only detection. I do not want recognition. Also how can I train detector?
Much appreciated.
reader.detect()
should do the same I believe from https://www.jaided.ai/easyocr/documentation/
It does not work.
horizontal_list,free_list = reader.detect(img)
I do not want to perform detection first, then recognition. I want to perform recognition straight on the image i pass.
Code:
But I get this error