draw_bbox.py 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. import time
  2. import torch
  3. from magic_pdf.libs.commons import fitz # PyMuPDF
  4. from magic_pdf.libs.Constants import CROSS_PAGE
  5. from magic_pdf.libs.ocr_content_type import BlockType, CategoryId, ContentType
  6. from magic_pdf.model.magic_model import MagicModel
  7. def draw_bbox_without_number(i, bbox_list, page, rgb_config, fill_config):
  8. new_rgb = []
  9. for item in rgb_config:
  10. item = float(item) / 255
  11. new_rgb.append(item)
  12. page_data = bbox_list[i]
  13. for bbox in page_data:
  14. x0, y0, x1, y1 = bbox
  15. rect_coords = fitz.Rect(x0, y0, x1, y1) # Define the rectangle
  16. if fill_config:
  17. page.draw_rect(
  18. rect_coords,
  19. color=None,
  20. fill=new_rgb,
  21. fill_opacity=0.3,
  22. width=0.5,
  23. overlay=True,
  24. ) # Draw the rectangle
  25. else:
  26. page.draw_rect(
  27. rect_coords,
  28. color=new_rgb,
  29. fill=None,
  30. fill_opacity=1,
  31. width=0.5,
  32. overlay=True,
  33. ) # Draw the rectangle
  34. def draw_bbox_with_number(i, bbox_list, page, rgb_config, fill_config):
  35. new_rgb = []
  36. for item in rgb_config:
  37. item = float(item) / 255
  38. new_rgb.append(item)
  39. page_data = bbox_list[i]
  40. for j, bbox in enumerate(page_data):
  41. x0, y0, x1, y1 = bbox
  42. rect_coords = fitz.Rect(x0, y0, x1, y1) # Define the rectangle
  43. if fill_config:
  44. page.draw_rect(
  45. rect_coords,
  46. color=None,
  47. fill=new_rgb,
  48. fill_opacity=0.3,
  49. width=0.5,
  50. overlay=True,
  51. ) # Draw the rectangle
  52. else:
  53. page.draw_rect(
  54. rect_coords,
  55. color=new_rgb,
  56. fill=None,
  57. fill_opacity=1,
  58. width=0.5,
  59. overlay=True,
  60. ) # Draw the rectangle
  61. page.insert_text(
  62. (x1+2, y0 + 10), str(j + 1), fontsize=10, color=new_rgb
  63. ) # Insert the index in the top left corner of the rectangle
  64. def draw_layout_bbox(pdf_info, pdf_bytes, out_path, filename):
  65. layout_bbox_list = []
  66. dropped_bbox_list = []
  67. tables_list, tables_body_list = [], []
  68. tables_caption_list, tables_footnote_list = [], []
  69. imgs_list, imgs_body_list, imgs_caption_list = [], [], []
  70. imgs_footnote_list = []
  71. titles_list = []
  72. texts_list = []
  73. interequations_list = []
  74. for page in pdf_info:
  75. page_layout_list = []
  76. page_dropped_list = []
  77. tables, tables_body, tables_caption, tables_footnote = [], [], [], []
  78. imgs, imgs_body, imgs_caption, imgs_footnote = [], [], [], []
  79. titles = []
  80. texts = []
  81. interequations = []
  82. for layout in page['layout_bboxes']:
  83. page_layout_list.append(layout['layout_bbox'])
  84. layout_bbox_list.append(page_layout_list)
  85. for dropped_bbox in page['discarded_blocks']:
  86. page_dropped_list.append(dropped_bbox['bbox'])
  87. dropped_bbox_list.append(page_dropped_list)
  88. for block in page['para_blocks']:
  89. bbox = block['bbox']
  90. if block['type'] == BlockType.Table:
  91. tables.append(bbox)
  92. for nested_block in block['blocks']:
  93. bbox = nested_block['bbox']
  94. if nested_block['type'] == BlockType.TableBody:
  95. tables_body.append(bbox)
  96. elif nested_block['type'] == BlockType.TableCaption:
  97. tables_caption.append(bbox)
  98. elif nested_block['type'] == BlockType.TableFootnote:
  99. tables_footnote.append(bbox)
  100. elif block['type'] == BlockType.Image:
  101. imgs.append(bbox)
  102. for nested_block in block['blocks']:
  103. bbox = nested_block['bbox']
  104. if nested_block['type'] == BlockType.ImageBody:
  105. imgs_body.append(bbox)
  106. elif nested_block['type'] == BlockType.ImageCaption:
  107. imgs_caption.append(bbox)
  108. elif nested_block['type'] == BlockType.ImageFootnote:
  109. imgs_footnote.append(bbox)
  110. elif block['type'] == BlockType.Title:
  111. titles.append(bbox)
  112. elif block['type'] == BlockType.Text:
  113. texts.append(bbox)
  114. elif block['type'] == BlockType.InterlineEquation:
  115. interequations.append(bbox)
  116. tables_list.append(tables)
  117. tables_body_list.append(tables_body)
  118. tables_caption_list.append(tables_caption)
  119. tables_footnote_list.append(tables_footnote)
  120. imgs_list.append(imgs)
  121. imgs_body_list.append(imgs_body)
  122. imgs_caption_list.append(imgs_caption)
  123. imgs_footnote_list.append(imgs_footnote)
  124. titles_list.append(titles)
  125. texts_list.append(texts)
  126. interequations_list.append(interequations)
  127. pdf_docs = fitz.open('pdf', pdf_bytes)
  128. for i, page in enumerate(pdf_docs):
  129. draw_bbox_with_number(i, layout_bbox_list, page, [255, 0, 0], False)
  130. draw_bbox_without_number(i, dropped_bbox_list, page, [158, 158, 158],
  131. True)
  132. draw_bbox_without_number(i, tables_list, page, [153, 153, 0],
  133. True) # color !
  134. draw_bbox_without_number(i, tables_body_list, page, [204, 204, 0],
  135. True)
  136. draw_bbox_without_number(i, tables_caption_list, page, [255, 255, 102],
  137. True)
  138. draw_bbox_without_number(i, tables_footnote_list, page,
  139. [229, 255, 204], True)
  140. draw_bbox_without_number(i, imgs_list, page, [51, 102, 0], True)
  141. draw_bbox_without_number(i, imgs_body_list, page, [153, 255, 51], True)
  142. draw_bbox_without_number(i, imgs_caption_list, page, [102, 178, 255],
  143. True)
  144. draw_bbox_with_number(i, imgs_footnote_list, page, [255, 178, 102],
  145. True),
  146. draw_bbox_without_number(i, titles_list, page, [102, 102, 255], True)
  147. draw_bbox_without_number(i, texts_list, page, [153, 0, 76], True)
  148. draw_bbox_without_number(i, interequations_list, page, [0, 255, 0],
  149. True)
  150. # Save the PDF
  151. pdf_docs.save(f'{out_path}/{filename}_layout.pdf')
  152. def draw_span_bbox(pdf_info, pdf_bytes, out_path, filename):
  153. text_list = []
  154. inline_equation_list = []
  155. interline_equation_list = []
  156. image_list = []
  157. table_list = []
  158. dropped_list = []
  159. next_page_text_list = []
  160. next_page_inline_equation_list = []
  161. def get_span_info(span):
  162. if span['type'] == ContentType.Text:
  163. if span.get(CROSS_PAGE, False):
  164. next_page_text_list.append(span['bbox'])
  165. else:
  166. page_text_list.append(span['bbox'])
  167. elif span['type'] == ContentType.InlineEquation:
  168. if span.get(CROSS_PAGE, False):
  169. next_page_inline_equation_list.append(span['bbox'])
  170. else:
  171. page_inline_equation_list.append(span['bbox'])
  172. elif span['type'] == ContentType.InterlineEquation:
  173. page_interline_equation_list.append(span['bbox'])
  174. elif span['type'] == ContentType.Image:
  175. page_image_list.append(span['bbox'])
  176. elif span['type'] == ContentType.Table:
  177. page_table_list.append(span['bbox'])
  178. for page in pdf_info:
  179. page_text_list = []
  180. page_inline_equation_list = []
  181. page_interline_equation_list = []
  182. page_image_list = []
  183. page_table_list = []
  184. page_dropped_list = []
  185. # 将跨页的span放到移动到下一页的列表中
  186. if len(next_page_text_list) > 0:
  187. page_text_list.extend(next_page_text_list)
  188. next_page_text_list.clear()
  189. if len(next_page_inline_equation_list) > 0:
  190. page_inline_equation_list.extend(next_page_inline_equation_list)
  191. next_page_inline_equation_list.clear()
  192. # 构造dropped_list
  193. for block in page['discarded_blocks']:
  194. if block['type'] == BlockType.Discarded:
  195. for line in block['lines']:
  196. for span in line['spans']:
  197. page_dropped_list.append(span['bbox'])
  198. dropped_list.append(page_dropped_list)
  199. # 构造其余useful_list
  200. for block in page['para_blocks']:
  201. if block['type'] in [
  202. BlockType.Text,
  203. BlockType.Title,
  204. BlockType.InterlineEquation,
  205. ]:
  206. for line in block['lines']:
  207. for span in line['spans']:
  208. get_span_info(span)
  209. elif block['type'] in [BlockType.Image, BlockType.Table]:
  210. for sub_block in block['blocks']:
  211. for line in sub_block['lines']:
  212. for span in line['spans']:
  213. get_span_info(span)
  214. text_list.append(page_text_list)
  215. inline_equation_list.append(page_inline_equation_list)
  216. interline_equation_list.append(page_interline_equation_list)
  217. image_list.append(page_image_list)
  218. table_list.append(page_table_list)
  219. pdf_docs = fitz.open('pdf', pdf_bytes)
  220. for i, page in enumerate(pdf_docs):
  221. # 获取当前页面的数据
  222. draw_bbox_without_number(i, text_list, page, [255, 0, 0], False)
  223. draw_bbox_without_number(i, inline_equation_list, page, [0, 255, 0], False)
  224. draw_bbox_without_number(i, interline_equation_list, page, [0, 0, 255], False)
  225. draw_bbox_without_number(i, image_list, page, [255, 204, 0], False)
  226. draw_bbox_without_number(i, table_list, page, [204, 0, 255], False)
  227. draw_bbox_without_number(i, dropped_list, page, [158, 158, 158], False)
  228. # Save the PDF
  229. pdf_docs.save(f'{out_path}/{filename}_spans.pdf')
  230. def draw_model_bbox(model_list: list, pdf_bytes, out_path, filename):
  231. dropped_bbox_list = []
  232. tables_body_list, tables_caption_list, tables_footnote_list = [], [], []
  233. imgs_body_list, imgs_caption_list, imgs_footnote_list = [], [], []
  234. titles_list = []
  235. texts_list = []
  236. interequations_list = []
  237. pdf_docs = fitz.open('pdf', pdf_bytes)
  238. magic_model = MagicModel(model_list, pdf_docs)
  239. for i in range(len(model_list)):
  240. page_dropped_list = []
  241. tables_body, tables_caption, tables_footnote = [], [], []
  242. imgs_body, imgs_caption, imgs_footnote = [], [], []
  243. titles = []
  244. texts = []
  245. interequations = []
  246. page_info = magic_model.get_model_list(i)
  247. layout_dets = page_info['layout_dets']
  248. for layout_det in layout_dets:
  249. bbox = layout_det['bbox']
  250. if layout_det['category_id'] == CategoryId.Text:
  251. texts.append(bbox)
  252. elif layout_det['category_id'] == CategoryId.Title:
  253. titles.append(bbox)
  254. elif layout_det['category_id'] == CategoryId.TableBody:
  255. tables_body.append(bbox)
  256. elif layout_det['category_id'] == CategoryId.TableCaption:
  257. tables_caption.append(bbox)
  258. elif layout_det['category_id'] == CategoryId.TableFootnote:
  259. tables_footnote.append(bbox)
  260. elif layout_det['category_id'] == CategoryId.ImageBody:
  261. imgs_body.append(bbox)
  262. elif layout_det['category_id'] == CategoryId.ImageCaption:
  263. imgs_caption.append(bbox)
  264. elif layout_det[
  265. 'category_id'] == CategoryId.InterlineEquation_YOLO:
  266. interequations.append(bbox)
  267. elif layout_det['category_id'] == CategoryId.Abandon:
  268. page_dropped_list.append(bbox)
  269. elif layout_det['category_id'] == CategoryId.ImageFootnote:
  270. imgs_footnote.append(bbox)
  271. tables_body_list.append(tables_body)
  272. tables_caption_list.append(tables_caption)
  273. tables_footnote_list.append(tables_footnote)
  274. imgs_body_list.append(imgs_body)
  275. imgs_caption_list.append(imgs_caption)
  276. titles_list.append(titles)
  277. texts_list.append(texts)
  278. interequations_list.append(interequations)
  279. dropped_bbox_list.append(page_dropped_list)
  280. imgs_footnote_list.append(imgs_footnote)
  281. for i, page in enumerate(pdf_docs):
  282. draw_bbox_with_number(i, dropped_bbox_list, page, [158, 158, 158],
  283. True) # color !
  284. draw_bbox_with_number(i, tables_body_list, page, [204, 204, 0], True)
  285. draw_bbox_with_number(i, tables_caption_list, page, [255, 255, 102],
  286. True)
  287. draw_bbox_with_number(i, tables_footnote_list, page, [229, 255, 204],
  288. True)
  289. draw_bbox_with_number(i, imgs_body_list, page, [153, 255, 51], True)
  290. draw_bbox_with_number(i, imgs_caption_list, page, [102, 178, 255],
  291. True)
  292. draw_bbox_with_number(i, imgs_footnote_list, page, [255, 178, 102],
  293. True)
  294. draw_bbox_with_number(i, titles_list, page, [102, 102, 255], True)
  295. draw_bbox_with_number(i, texts_list, page, [153, 0, 76], True)
  296. draw_bbox_with_number(i, interequations_list, page, [0, 255, 0], True)
  297. # Save the PDF
  298. pdf_docs.save(f'{out_path}/{filename}_model.pdf')
  299. from typing import List
  300. def do_predict(boxes: List[List[int]]) -> List[int]:
  301. from transformers import LayoutLMv3ForTokenClassification
  302. from magic_pdf.v3.helpers import prepare_inputs, boxes2inputs, parse_logits
  303. model = LayoutLMv3ForTokenClassification.from_pretrained("hantian/layoutreader")
  304. model.to("cuda")
  305. inputs = boxes2inputs(boxes)
  306. inputs = prepare_inputs(inputs, model)
  307. logits = model(**inputs).logits.cpu().squeeze(0)
  308. return parse_logits(logits, len(boxes))
  309. def draw_layout_sort_bbox(pdf_info, pdf_bytes, out_path, filename):
  310. layout_bbox_list = []
  311. from loguru import logger
  312. for page in pdf_info:
  313. page_line_list = []
  314. for block in page['preproc_blocks']:
  315. if block['type'] == 'text' or block['type'] == 'title' or block['type'] == 'interline_equation':
  316. for line in block['lines']:
  317. bbox = line['bbox']
  318. page_line_list.append(bbox)
  319. if block['type'] == 'table' or block['type'] == 'image':
  320. bbox = block['bbox']
  321. page_line_list.append(bbox)
  322. # 使用layoutreader排序
  323. page_size = page['page_size']
  324. x_scale = 1000.0 / page_size[0]
  325. y_scale = 1000.0 / page_size[1]
  326. boxes = []
  327. logger.info(f"Scale: {x_scale}, {y_scale}, Boxes len: {len(page_line_list)}")
  328. for left, top, right, bottom in page_line_list:
  329. left = round(left * x_scale)
  330. top = round(top * y_scale)
  331. right = round(right * x_scale)
  332. bottom = round(bottom * y_scale)
  333. assert (
  334. 1000 >= right >= left >= 0 and 1000 >= bottom >= top >= 0
  335. ), f"Invalid box. right: {right}, left: {left}, bottom: {bottom}, top: {top}"
  336. boxes.append([left, top, right, bottom])
  337. logger.info("layoutreader start")
  338. start = time.time()
  339. orders = do_predict(boxes)
  340. if torch.cuda.is_available():
  341. torch.cuda.empty_cache()
  342. print(orders)
  343. logger.info(f"layoutreader end, cos time{time.time() - start}")
  344. sorted_bboxes = [page_line_list[i] for i in orders]
  345. layout_bbox_list.append(sorted_bboxes)
  346. pdf_docs = fitz.open('pdf', pdf_bytes)
  347. for i, page in enumerate(pdf_docs):
  348. draw_bbox_with_number(i, layout_bbox_list, page, [255, 0, 0], False)
  349. pdf_docs.save(f'{out_path}/{filename}_layout_sort.pdf')