Skip to content

Commit

Permalink
bigger resolution for OCR (#2919)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?



### Type of change

- [x] Performance Improvement
  • Loading branch information
KevinHuSh authored Oct 21, 2024
1 parent 3e702aa commit bfc07fe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions deepdoc/parser/pdf_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,8 @@ def __images__(self, fnm, zoomin=3, page_from=0,
fnm, str) else pdfplumber.open(BytesIO(fnm))
self.page_images = [p.to_image(resolution=72 * zoomin).annotated for i, p in
enumerate(self.pdf.pages[page_from:page_to])]
self.page_images_x2 = [p.to_image(resolution=72 * zoomin * 2).annotated for i, p in
enumerate(self.pdf.pages[page_from:page_to])]
self.page_chars = [[{**c, 'top': c['top'], 'bottom': c['bottom']} for c in page.dedupe_chars().chars if self._has_color(c)] for page in
self.pdf.pages[page_from:page_to]]
self.total_page = len(self.pdf.pages)
Expand Down Expand Up @@ -992,15 +994,15 @@ def dfs(arr, depth):
self.is_english = False

st = timer()
for i, img in enumerate(self.page_images):
for i, img in enumerate(self.page_images_x2):
chars = self.page_chars[i] if not self.is_english else []
self.mean_height.append(
np.median(sorted([c["height"] for c in chars])) if chars else 0
)
self.mean_width.append(
np.median(sorted([c["width"] for c in chars])) if chars else 8
)
self.page_cum_height.append(img.size[1] / zoomin)
self.page_cum_height.append(img.size[1] / zoomin/2)
j = 0
while j + 1 < len(chars):
if chars[j]["text"] and chars[j + 1]["text"] \
Expand All @@ -1010,7 +1012,7 @@ def dfs(arr, depth):
chars[j]["text"] += " "
j += 1

self.__ocr(i + 1, img, chars, zoomin)
self.__ocr(i + 1, img, chars, zoomin*2)
if callback and i % 6 == 5:
callback(prog=(i + 1) * 0.6 / len(self.page_images), msg="")
# print("OCR:", timer()-st)
Expand Down

0 comments on commit bfc07fe

Please sign in to comment.