File size: 7,453 Bytes
e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 1924325 e2f8fd2 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
import os
import re
import cv2
import json
import shutil
import logging
import subprocess
import numpy as np
from threading import Timer
from PIL import Image, ImageDraw
from modules.latex_processor import (
normalize_latex,
token_add_color_RGB,
clean_latex
)
from modules.tokenize_latex.tokenize_latex import tokenize_latex
tabular_template = r"""
\documentclass[12pt]{article}
\usepackage[landscape]{geometry}
\usepackage{geometry}
\geometry{a<PaperSize>paper,scale=0.98}
\pagestyle{empty}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{amssymb}
\usepackage{upgreek}
\usepackage{amsmath}
\usepackage{xcolor}
\begin{document}
\makeatletter
\renewcommand*{\@textcolor}[3]{%%
\protect\leavevmode
\begingroup
\color#1{#2}#3%%
\endgroup
}
\makeatother
\begin{displaymath}
%s
\end{displaymath}
\end{document}
"""
formular_template = r"""
\documentclass[12pt]{article}
\usepackage[landscape]{geometry}
\usepackage{geometry}
\geometry{a<PaperSize>paper,scale=0.98}
\pagestyle{empty}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{upgreek}
\usepackage{amssymb}
\usepackage{xcolor}
\begin{document}
\makeatletter
\renewcommand*{\@textcolor}[3]{%%
\protect\leavevmode
\begingroup
\color#1{#2}#3%%
\endgroup
}
\makeatother
\begin{displaymath}
%s
\end{displaymath}
\end{document}
"""
formular_template_zh = r"""
\documentclass[12pt]{article}
\usepackage[landscape]{geometry}
\usepackage{geometry}
\geometry{a<PaperSize>paper,scale=0.98}
\pagestyle{empty}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{upgreek}
\usepackage{CJK}
\usepackage{amssymb}
\usepackage{xcolor}
\begin{document}
\makeatletter
\renewcommand*{\@textcolor}[3]{%%
\protect\leavevmode
\begingroup
\color#1{#2}#3%%
\endgroup
}
\makeatother
\begin{CJK}{UTF8}{gkai}
%s
\end{CJK}
\end{document}
"""
def run_cmd(cmd, timeout_sec=30):
proc = subprocess.Popen(cmd, shell=True)
kill_proc = lambda p: p.kill()
timer = Timer(timeout_sec, kill_proc, [proc])
try:
timer.start()
stdout,stderr = proc.communicate()
finally:
timer.cancel()
def convert_pdf2img(pdf_filename, png_filename):
cmd = "magick -density 200 -quality 100 %s %s"%(pdf_filename, png_filename)
os.system(cmd)
def crop_image(image_path, pad=8):
img = Image.open(image_path).convert("L")
img_data = np.asarray(img, dtype=np.uint8)
nnz_inds = np.where(img_data!=255)
if len(nnz_inds[0]) == 0:
y_min = 0
y_max = 10
x_min = 0
x_max = 10
else:
y_min = np.min(nnz_inds[0])
y_max = np.max(nnz_inds[0])
x_min = np.min(nnz_inds[1])
x_max = np.max(nnz_inds[1])
img = Image.open(image_path).convert("RGB").crop((x_min-pad, y_min-pad, x_max+pad, y_max+pad))
img.save(image_path)
def extrac_bbox_from_color_image(image_path, color_list):
img = cv2.imread(image_path)
bbox_list = []
for target_color in color_list:
r, g, b = target_color
target_rgb = np.array([b, g, r], dtype=np.uint8)
mask = np.all(img == target_rgb, axis=2)
coords = np.argwhere(mask)
if coords.size > 0:
x_min, y_min = coords[:, 1].min(), coords[:, 0].min()
x_max, y_max = coords[:, 1].max(), coords[:, 0].max()
bbox_list.append([int(x_min-1), int(y_min-1), int(x_max+1), int(y_max+1)])
else:
bbox_list.append([])
img = Image.open(image_path).convert("RGB").convert("L")
img_bw = img.point(lambda x: 255 if x == 255 else 0, '1')
img_bw.convert("RGB").save(image_path)
return bbox_list
def contains_chinese(text):
# 匹配中文字符的正则表达式范围
return re.search(r'[\u4e00-\u9fff]', text) is not None
def latex2bbox_color(input_arg):
latex, basename, output_path, temp_dir, total_color_list = input_arg
if "tabular" in latex:
template = tabular_template
else:
if contains_chinese(latex):
template = formular_template_zh
latex = latex.replace(",", ", ").replace(":", ": ").replace(";", "; ")
else:
template = formular_template
output_bbox_path = os.path.join(output_path, 'bbox', basename+'.jsonl')
output_vis_path = os.path.join(output_path, 'vis', basename+'.png')
output_base_path = os.path.join(output_path, 'vis', basename+'_base.png')
if os.path.exists(output_bbox_path) and os.path.exists(output_vis_path) and os.path.exists(output_base_path):
return
try:
latex = latex.replace("\n", " ")
ret, new_latex = tokenize_latex(latex, middle_file=os.path.join(temp_dir, basename+'.txt'))
if not(ret and new_latex):
log = f"ERROR, Tokenize latex failed: {basename}."
logging.info(log)
new_latex = latex
latex = normalize_latex(new_latex)
token_list = []
l_split = latex.strip().split(' ')
color_list = total_color_list[0:len(l_split)]
idx = 0
while idx < len(l_split):
l_split, idx, token_list = token_add_color_RGB(l_split, idx, token_list)
rgb_latex = " ".join(l_split)
for idx, color in enumerate(color_list):
R, G, B = color
rgb_latex = rgb_latex.replace(f"<color_{idx}>", f"{R},{G},{B}")
if len(token_list) > 1300:
paper_size = 3
elif len(token_list) > 600:
paper_size = 4
else:
paper_size = 5
final_latex = template.replace("<PaperSize>", str(paper_size)) % rgb_latex
except Exception as e:
log = f"ERROR, Preprocess latex failed: {basename}; {e}."
logging.info(log)
return
pre_name = output_path.replace('/', '_').replace('.','_') + '_' + basename
tex_filename = os.path.join(temp_dir, pre_name+'.tex')
log_filename = os.path.join(temp_dir, pre_name+'.log')
aux_filename = os.path.join(temp_dir, pre_name+'.aux')
with open(tex_filename, "w") as w:
print(final_latex, file=w)
run_cmd(f"pdflatex -interaction=nonstopmode -output-directory={temp_dir} {tex_filename} >/dev/null")
try:
os.remove(tex_filename)
os.remove(log_filename)
os.remove(aux_filename)
except:
pass
pdf_filename = tex_filename[:-4]+'.pdf'
if not os.path.exists(pdf_filename):
log = f"ERROR, Compile pdf failed: {pdf_filename}"
logging.info(log)
else:
convert_pdf2img(pdf_filename, output_base_path)
os.remove(pdf_filename)
crop_image(output_base_path)
bbox_list = extrac_bbox_from_color_image(output_base_path, color_list)
vis = Image.open(output_base_path)
draw = ImageDraw.Draw(vis)
with open(output_bbox_path, 'w', encoding='utf-8') as f:
for token, box in zip(token_list, bbox_list):
item = {
"bbox": box,
"token": token
}
f.write(json.dumps(item, ensure_ascii=False)+'\n')
if not box:
continue
x_min, y_min, x_max, y_max = box
draw.rectangle([x_min, y_min, x_max, y_max], fill=None, outline=(0,250,0), width=1)
try:
draw.text((x_min, y_min), token, (250,0,0))
except:
pass
vis.save(output_vis_path)
|