Commit 8b230796 authored by zhougaofeng's avatar zhougaofeng
Browse files

Update UNIPipe.py

parent 5513a575
...@@ -29,12 +29,12 @@ class UNIPipe(AbsPipe): ...@@ -29,12 +29,12 @@ class UNIPipe(AbsPipe):
# logger.info('暂时强制使用ocr pdf') # logger.info('暂时强制使用ocr pdf')
self.pdf_type = self.PIP_OCR self.pdf_type = self.PIP_OCR
def pipe_analyze(self): def pipe_analyze(self,model):
if self.pdf_type == self.PIP_TXT: if self.pdf_type == self.PIP_TXT:
self.model_list = doc_analyze(self.pdf_bytes, ocr=True, self.model_list = doc_analyze(model,self.pdf_bytes, ocr=True,
start_page_id=self.start_page_id, end_page_id=self.end_page_id) start_page_id=self.start_page_id, end_page_id=self.end_page_id)
elif self.pdf_type == self.PIP_OCR: elif self.pdf_type == self.PIP_OCR:
self.model_list = doc_analyze(self.pdf_bytes, ocr=True, self.model_list = doc_analyze(model,self.pdf_bytes, ocr=True,
start_page_id=self.start_page_id, end_page_id=self.end_page_id) start_page_id=self.start_page_id, end_page_id=self.end_page_id)
def pipe_parse(self): def pipe_parse(self):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment