releasenotes.md
cyrillic_g2. This model is a new default for Cyrillic script. (partial financial support by Alejandro Cabrerizo)DBNet, see paper. It can be used by initializing like this reader = easyocr.Reader(['en'], detect_network = 'dbnet18'). Currently, DBNet text detector requires running with GPU.readtextlang method (thanks@arkya-art, see PR)rotation_info argument to support all possible angle (thanksabde0103, see PR)x_ths and y_ths to control merging behavior when paragraph=Truerecog_network argument when creating Reader instance.
For example, reader = easyocr.Reader(['en','fr'], recog_network = 'latin_g1') will use the 1st generation Latin model.setLanguageList method to Reader class. This is a convenient api for changing languages (within the same model) after creating class instance.optimal_num_chars to detect method. If specified, bounding boxes with estimated number of characters near this value are returned first. (thanks @adamfrees)rotation_info to readtext method. Allow EasyOCR to rotate each text box and return the one with the best confident score. Eligible values are 90, 180 and 270. For example, try [90, 180 ,270] for all possible text orientations. (thanks @mijoo308)detect and recognize method for performing text detection and recognition separatelymin_size argument for readtext: for filtering out small text box model_storage_directory when create Reader instance) (thanks @jpotter)readtext's parameter 'paragraph' = True)