-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #367 from VikParuchuri/vik_v2
Add debug utils, fix output quality issues
- Loading branch information
Showing
8 changed files
with
256 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
import json | ||
import os | ||
|
||
import requests | ||
from PIL import Image, ImageDraw, ImageFont | ||
|
||
from marker.settings import settings | ||
from marker.v2.processors import BaseProcessor | ||
from marker.v2.schema import BlockTypes | ||
from marker.v2.schema.document import Document | ||
|
||
|
||
class DebugProcessor(BaseProcessor): | ||
block_types = tuple() | ||
debug_data_folder: str = "debug_data" | ||
debug_layout_images: bool = False | ||
debug_pdf_images: bool = False | ||
debug_json: bool = False | ||
render_font: str = os.path.join(settings.FONT_DIR, "GoNotoCurrent-Regular.ttf") | ||
font_dl_path: str = "https://github.com/satbyy/go-noto-universal/releases/download/v7.0" | ||
|
||
def __call__(self, document: Document): | ||
# Remove extension from doc name | ||
doc_base = os.path.basename(document.filepath).rsplit(".", 1)[0] | ||
self.debug_folder = os.path.join(self.debug_data_folder, doc_base) | ||
os.makedirs(self.debug_folder, exist_ok=True) | ||
|
||
if self.debug_layout_images: | ||
self.draw_layout_debug_images(document) | ||
print(f"Dumped layout debug images to {self.debug_data_folder}") | ||
|
||
if self.debug_pdf_images: | ||
self.draw_layout_debug_images(document, pdf_mode=True) | ||
print(f"Dumped PDF debug images to {self.debug_data_folder}") | ||
|
||
if self.debug_json: | ||
self.dump_block_debug_data(document) | ||
print(f"Dumped block debug data to {self.debug_data_folder}") | ||
|
||
def draw_layout_debug_images(self, document: Document, pdf_mode = False): | ||
for idx, page in enumerate(document.pages): | ||
img_size = page.highres_image.size | ||
png_image = Image.new("RGB", img_size, color="white") | ||
if pdf_mode: | ||
png_image = page.highres_image.copy() | ||
|
||
line_bboxes = [] | ||
line_text = [] | ||
for child in page.children: | ||
if child.block_type != BlockTypes.Line: | ||
continue | ||
|
||
bbox = child.polygon.rescale(page.polygon.size, img_size).bbox | ||
line_bboxes.append(bbox) | ||
line_text.append(child.raw_text(document)) | ||
|
||
if pdf_mode: | ||
line_text = None | ||
|
||
self.render_on_image(line_bboxes, png_image, labels=line_text, color="black", draw_bbox=False, label_font_size=24) | ||
|
||
layout_bboxes = [] | ||
layout_labels = [] | ||
for child in page.children: | ||
if child.block_type in [BlockTypes.Line, BlockTypes.Span]: | ||
continue | ||
|
||
bbox = child.polygon.rescale(page.polygon.size, img_size).bbox | ||
layout_bboxes.append(bbox) | ||
layout_labels.append(str(child.block_type)) | ||
|
||
self.render_on_image(layout_bboxes, png_image, labels=layout_labels, color="red", label_font_size=24) | ||
|
||
order_labels = [str(i) for i in range(len(layout_bboxes))] | ||
self.render_on_image( | ||
layout_bboxes, | ||
png_image, | ||
labels=order_labels, | ||
color="green", | ||
draw_bbox=False, | ||
label_offset=5 | ||
) | ||
|
||
filecomp = "pdf" if pdf_mode else "layout" | ||
debug_file = os.path.join(self.debug_folder, f"{filecomp}_page_{idx}.png") | ||
png_image.save(debug_file) | ||
|
||
def dump_block_debug_data(self, document: Document): | ||
debug_file = os.path.join(self.debug_folder, f"blocks.json") | ||
debug_data = [] | ||
for idx, page in enumerate(document.pages): | ||
page_data = page.model_dump(exclude=["lowres_image", "highres_image"]) | ||
debug_data.append(page_data) | ||
|
||
with open(debug_file, "w+") as f: | ||
json.dump(debug_data, f) | ||
|
||
def get_font_path(self) -> str: | ||
if not os.path.exists(self.render_font): | ||
os.makedirs(os.path.dirname(self.render_font), exist_ok=True) | ||
font_dl_path = f"{self.font_dl_path}/{os.path.basename(self.render_font)}" | ||
with requests.get(font_dl_path, stream=True) as r, open(self.render_font, 'wb') as f: | ||
r.raise_for_status() | ||
for chunk in r.iter_content(chunk_size=8192): | ||
f.write(chunk) | ||
|
||
return self.render_font | ||
|
||
def get_text_size(self, text, font): | ||
im = Image.new(mode="P", size=(0, 0)) | ||
draw = ImageDraw.Draw(im) | ||
_, _, width, height = draw.textbbox((0, 0), text=text, font=font) | ||
return width, height | ||
|
||
def render_on_image(self, bboxes, image, labels=None, label_offset=1, label_font_size=10, color: str | list='red', draw_bbox=True): | ||
draw = ImageDraw.Draw(image) | ||
font_path = self.get_font_path() | ||
label_font = ImageFont.truetype(font_path, label_font_size) | ||
|
||
for i, bbox in enumerate(bboxes): | ||
bbox = [int(p) for p in bbox] | ||
if draw_bbox: | ||
draw.rectangle(bbox, outline=color[i] if isinstance(color, list) else color, width=1) | ||
|
||
if labels is not None: | ||
label = labels[i] | ||
text_position = ( | ||
bbox[0] + label_offset, | ||
bbox[1] + label_offset | ||
) | ||
text_size = self.get_text_size(label, label_font) | ||
if text_size[0] <= 0 or text_size[1] <= 0: | ||
continue | ||
box_position = ( | ||
text_position[0], | ||
text_position[1], | ||
text_position[0] + text_size[0], | ||
text_position[1] + text_size[1] | ||
) | ||
draw.rectangle(box_position, fill="white") | ||
draw.text( | ||
text_position, | ||
label, | ||
fill=color[i] if isinstance(color, list) else color, | ||
font=label_font | ||
) | ||
|
||
return image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
from collections import Counter | ||
|
||
from marker.v2.processors import BaseProcessor | ||
from marker.v2.schema import BlockTypes | ||
from marker.v2.schema.document import Document | ||
|
||
|
||
class IgnoreTextProcessor(BaseProcessor): | ||
block_types = (BlockTypes.Text,) | ||
common_element_threshold = .6 | ||
max_blocks = 1 | ||
|
||
def __call__(self, document: Document): | ||
first_blocks = [] | ||
last_blocks = [] | ||
for page in document.pages: | ||
initial_block = None | ||
block = None | ||
last_block = None | ||
for block in page.children: | ||
if block.block_type not in self.block_types: | ||
continue | ||
|
||
if initial_block is None: | ||
initial_block = block | ||
|
||
if block is not None: | ||
last_block = block | ||
|
||
if initial_block is not None: | ||
first_blocks.append(initial_block) | ||
if last_block is not None: | ||
last_blocks.append(last_block) | ||
|
||
self.filter_common_elements(document, first_blocks) | ||
self.filter_common_elements(document, last_blocks) | ||
|
||
def filter_common_elements(self, document, lines): | ||
# We can't filter if we don't have enough pages to find common elements | ||
if len(lines) < 3: | ||
return [] | ||
|
||
text = [b.raw_text(document) for b in lines] | ||
counter = Counter(text) | ||
common = [k for k, v in counter.items() if v > len(lines) * self.common_element_threshold] | ||
for b in lines: | ||
if b.raw_text(document) in common: | ||
b.is_header_footer = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters