File size: 653 Bytes
2b3ce8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from easyocr import Reader
from src.setting import OCR_MODEL_LANGUAGE
from src import logging

class OCR:
    def __init__(self):
        pass

    def extract_text(image):
        """

        image : image or numpy array.



        This function is for OCR 



        Return : raw text from ocr model

        

        """
        try:
            ocr = Reader(lang_list=[OCR_MODEL_LANGUAGE])
            result = ocr.readtext(image)
            text = [bbox[1] for bbox in result]
            text = "\n".join(text)
            return text
        except Exception as e:
            logging.info(f"Error : {e} : OCR.extract_text")