pdf_parse_for_train.py 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. import time
  2. # from anyio import Path
  3. from magic_pdf.libs.commons import (
  4. fitz,
  5. get_delta_time,
  6. get_img_s3_client,
  7. get_docx_model_output,
  8. )
  9. import json
  10. import os
  11. from copy import deepcopy
  12. import math
  13. from loguru import logger
  14. from magic_pdf.layout.bbox_sort import (
  15. prepare_bboxes_for_layout_split,
  16. )
  17. from magic_pdf.layout.layout_sort import (
  18. LAYOUT_UNPROC,
  19. get_bboxes_layout,
  20. get_columns_cnt_of_layout,
  21. sort_text_block,
  22. )
  23. from magic_pdf.libs.drop_reason import DropReason
  24. from magic_pdf.libs.markdown_utils import escape_special_markdown_char
  25. from magic_pdf.libs.safe_filename import sanitize_filename
  26. from magic_pdf.libs.vis_utils import draw_bbox_on_page, draw_layout_bbox_on_page
  27. from magic_pdf.pre_proc.detect_images import parse_images
  28. from magic_pdf.pre_proc.detect_tables import parse_tables # 获取tables的bbox
  29. from magic_pdf.pre_proc.detect_equation import parse_equations # 获取equations的bbox
  30. from magic_pdf.pre_proc.detect_header import parse_headers # 获取headers的bbox
  31. from magic_pdf.pre_proc.detect_page_number import parse_pageNos # 获取pageNos的bbox
  32. from magic_pdf.pre_proc.detect_footnote import (
  33. parse_footnotes_by_model,
  34. parse_footnotes_by_rule,
  35. ) # 获取footnotes的bbox
  36. from magic_pdf.pre_proc.detect_footer_by_model import parse_footers # 获取footers的bbox
  37. from magic_pdf.post_proc.detect_para import (
  38. ParaProcessPipeline,
  39. TitleDetectionException,
  40. TitleLevelException,
  41. ParaSplitException,
  42. ParaMergeException,
  43. DenseSingleLineBlockException,
  44. )
  45. from magic_pdf.pre_proc.main_text_font import get_main_text_font
  46. from magic_pdf.pre_proc.remove_colored_strip_bbox import remove_colored_strip_textblock
  47. from magic_pdf.pre_proc.remove_footer_header import remove_headder_footer_one_page
  48. from magic_pdf.train_utils.extract_caption import extract_caption_bbox
  49. """
  50. from para.para_pipeline import ParaProcessPipeline
  51. from para.exceptions import (
  52. TitleDetectionException,
  53. TitleLevelException,
  54. ParaSplitException,
  55. ParaMergeException,
  56. DenseSingleLineBlockException,
  57. )
  58. """
  59. from magic_pdf.libs.commons import read_file, join_path
  60. from magic_pdf.libs.pdf_image_tools import save_images_by_bboxes
  61. from magic_pdf.post_proc.remove_footnote import (
  62. merge_footnote_blocks,
  63. remove_footnote_blocks,
  64. )
  65. from magic_pdf.pre_proc.citationmarker_remove import remove_citation_marker
  66. from magic_pdf.pre_proc.equations_replace import (
  67. combine_chars_to_pymudict,
  68. remove_chars_in_text_blocks,
  69. replace_equations_in_textblock,
  70. )
  71. from magic_pdf.pre_proc.pdf_pre_filter import pdf_filter
  72. from magic_pdf.pre_proc.detect_footer_header_by_statistics import drop_footer_header
  73. from magic_pdf.pre_proc.construct_page_dict import construct_page_component
  74. from magic_pdf.pre_proc.fix_image import (
  75. combine_images,
  76. fix_image_vertical,
  77. fix_seperated_image,
  78. include_img_title,
  79. )
  80. from magic_pdf.post_proc.pdf_post_filter import pdf_post_filter
  81. from magic_pdf.pre_proc.remove_rotate_bbox import (
  82. get_side_boundry,
  83. remove_rotate_side_textblock,
  84. remove_side_blank_block,
  85. )
  86. from magic_pdf.pre_proc.resolve_bbox_conflict import (
  87. check_text_block_horizontal_overlap,
  88. resolve_bbox_overlap_conflict,
  89. )
  90. from magic_pdf.pre_proc.fix_table import (
  91. fix_table_text_block,
  92. fix_tables,
  93. include_table_title,
  94. )
  95. from magic_pdf.pre_proc.solve_line_alien import solve_inline_too_large_interval
  96. denseSingleLineBlockException_msg = DenseSingleLineBlockException().message
  97. titleDetectionException_msg = TitleDetectionException().message
  98. titleLevelException_msg = TitleLevelException().message
  99. paraSplitException_msg = ParaSplitException().message
  100. paraMergeException_msg = ParaMergeException().message
  101. def parse_pdf_for_train(
  102. s3_pdf_path,
  103. s3_pdf_profile,
  104. pdf_model_output,
  105. save_path,
  106. book_name,
  107. pdf_model_profile=None,
  108. image_s3_config=None,
  109. start_page_id=0,
  110. end_page_id=None,
  111. junk_img_bojids=[],
  112. debug_mode=False,
  113. ):
  114. pdf_bytes = read_file(s3_pdf_path, s3_pdf_profile)
  115. save_tmp_path = os.path.join(os.path.dirname(__file__), "../..", "tmp", "unittest")
  116. md_bookname_save_path = ""
  117. book_name = sanitize_filename(book_name)
  118. if debug_mode:
  119. save_path = join_path(save_tmp_path, "md")
  120. pdf_local_path = join_path(save_tmp_path, "download-pdfs", book_name)
  121. if not os.path.exists(os.path.dirname(pdf_local_path)):
  122. # 如果目录不存在,创建它
  123. os.makedirs(os.path.dirname(pdf_local_path))
  124. md_bookname_save_path = join_path(save_tmp_path, "md", book_name)
  125. if not os.path.exists(md_bookname_save_path):
  126. # 如果目录不存在,创建它
  127. os.makedirs(md_bookname_save_path)
  128. with open(pdf_local_path + ".pdf", "wb") as pdf_file:
  129. pdf_file.write(pdf_bytes)
  130. pdf_docs = fitz.open("pdf", pdf_bytes)
  131. pdf_info_dict = {}
  132. img_s3_client = get_img_s3_client(
  133. save_path, image_s3_config
  134. ) # 更改函数名和参数,避免歧义
  135. # img_s3_client = "img_s3_client" #不创建这个对象,直接用字符串占位
  136. start_time = time.time()
  137. """通过统计pdf全篇文字,识别正文字体"""
  138. main_text_font = get_main_text_font(pdf_docs)
  139. end_page_id = end_page_id if end_page_id else len(pdf_docs) - 1
  140. for page_id in range(start_page_id, end_page_id + 1):
  141. page = pdf_docs[page_id]
  142. page_width = page.rect.width
  143. page_height = page.rect.height
  144. if debug_mode:
  145. time_now = time.time()
  146. logger.info(
  147. f"page_id: {page_id}, last_page_cost_time: {get_delta_time(start_time)}"
  148. )
  149. start_time = time_now
  150. """
  151. # 通过一个规则,过滤掉单页超过1500非junkimg的pdf
  152. # 对单页面非重复id的img数量做统计,如果当前页超过1500则直接return need_drop
  153. """
  154. page_imgs = page.get_images()
  155. img_counts = 0
  156. for img in page_imgs:
  157. img_bojid = img[0]
  158. if img_bojid in junk_img_bojids: # 判断这个图片在不在junklist中
  159. continue # 如果在junklist就不用管了,跳过
  160. else:
  161. recs = page.get_image_rects(img, transform=True)
  162. if recs: # 如果这张图在当前页面有展示
  163. img_counts += 1
  164. if (
  165. img_counts >= 1500
  166. ): # 如果去除了junkimg的影响,单页img仍然超过1500的话,就排除当前pdf
  167. logger.warning(
  168. f"page_id: {page_id}, img_counts: {img_counts}, drop this pdf: {book_name}, drop_reason: {DropReason.HIGH_COMPUTATIONAL_lOAD_BY_IMGS}"
  169. )
  170. result = {
  171. "need_drop": True,
  172. "drop_reason": DropReason.HIGH_COMPUTATIONAL_lOAD_BY_IMGS,
  173. }
  174. if not debug_mode:
  175. return result
  176. """
  177. ==================================================================================================================================
  178. 首先获取基本的block数据,对pdf进行分解,获取图片、表格、公式、text的bbox
  179. """
  180. # 解析pdf原始文本block
  181. text_raw_blocks = page.get_text(
  182. "dict",
  183. flags=fitz.TEXTFLAGS_TEXT,
  184. )["blocks"]
  185. model_output_json = get_docx_model_output(
  186. pdf_model_output, pdf_model_profile, page_id
  187. )
  188. # 解析图片
  189. image_bboxes = parse_images(page_id, page, model_output_json, junk_img_bojids)
  190. image_bboxes = fix_image_vertical(
  191. image_bboxes, text_raw_blocks
  192. ) # 修正图片的位置
  193. image_bboxes = fix_seperated_image(image_bboxes) # 合并有边重合的图片
  194. old_image_bboxes = deepcopy(image_bboxes)
  195. image_bboxes = include_img_title(
  196. text_raw_blocks, image_bboxes
  197. ) # 向图片上方和下方寻找title,使用规则进行匹配,暂时只支持英文规则
  198. """此时image_bboxes中可能出现这种情况,水平并列的2个图片,下方分别有各自的子标题,2个子标题下方又有大标题(形如Figxxx),会出现2个图片的bbox都包含了这个大标题,这种情况需要把图片合并"""
  199. image_bboxes = combine_images(image_bboxes) # 合并图片
  200. # 解析表格并对table_bboxes进行位置的微调,防止表格周围的文字被截断
  201. table_bboxes = parse_tables(page_id, page, model_output_json)
  202. table_bboxes = fix_tables(
  203. page, table_bboxes, include_table_title=False, scan_line_num=2
  204. ) # 修正
  205. table_bboxes = fix_table_text_block(
  206. text_raw_blocks, table_bboxes
  207. ) # 修正与text block的关系,某些table修正与pymupdf获取到的table内textblock没有完全包含,因此要进行一次修正。
  208. # debug_show_bbox(pdf_docs, page_id, table_bboxes, [], [b['bbox'] for b in text_raw_blocks], join_path(save_path, book_name, f"{book_name}_debug.pdf"), 7)
  209. old_table_bboxes = deepcopy(table_bboxes)
  210. table_bboxes = include_table_title(
  211. text_raw_blocks, table_bboxes
  212. ) # 向table上方和下方寻找title,使用规则进行匹配,暂时只支持英文规则
  213. # 解析公式
  214. equations_inline_bboxes, equations_interline_bboxes = parse_equations(
  215. page_id, page, model_output_json
  216. )
  217. # get image box and caption !
  218. image_bboxes_with_caption = extract_caption_bbox(image_bboxes, old_image_bboxes)
  219. # get table box and caption !
  220. table_bboxes_with_caption = extract_caption_bbox(table_bboxes, old_table_bboxes)
  221. """
  222. ==================================================================================================================================
  223. 进入预处理-1阶段
  224. -------------------
  225. # # 解析标题
  226. # title_bboxs = parse_titles(page_id, page, model_output_json)
  227. # # 评估Layout是否规整、简单
  228. # isSimpleLayout_flag, fullColumn_cnt, subColumn_cnt, curPage_loss = evaluate_pdf_layout(page_id, page, model_output_json)
  229. 接下来开始进行预处理过程
  230. """
  231. # title_bboxs = parse_titles(page_id, page, model_output_json)
  232. """去掉每页的页码、页眉、页脚"""
  233. page_no_bboxs = parse_pageNos(page_id, page, model_output_json)
  234. header_bboxs = parse_headers(page_id, page, model_output_json)
  235. footer_bboxs = parse_footers(page_id, page, model_output_json)
  236. (
  237. image_bboxes,
  238. table_bboxes,
  239. remain_text_blocks,
  240. removed_hdr_foot_txt_block,
  241. removed_hdr_foot_img_block,
  242. removed_hdr_foot_table,
  243. ) = remove_headder_footer_one_page(
  244. text_raw_blocks,
  245. image_bboxes,
  246. table_bboxes,
  247. header_bboxs,
  248. footer_bboxs,
  249. page_no_bboxs,
  250. page_width,
  251. page_height,
  252. )
  253. """去除页面上半部分长条色块内的文本块"""
  254. remain_text_blocks, removed_colored_narrow_strip_background_text_block = (
  255. remove_colored_strip_textblock(remain_text_blocks, page)
  256. )
  257. # debug_show_bbox(pdf_docs, page_id, footnote_bboxes_by_model, [b['bbox'] for b in remain_text_blocks], header_bboxs, join_path(save_path, book_name, f"{book_name}_debug.pdf"), 7)
  258. """去掉旋转的文字:水印、垂直排列的文字"""
  259. remain_text_blocks, removed_non_horz_text_block = remove_rotate_side_textblock(
  260. remain_text_blocks, page_width, page_height
  261. ) # 去掉水印,非水平文字
  262. remain_text_blocks, removed_empty_side_block = remove_side_blank_block(
  263. remain_text_blocks, page_width, page_height
  264. ) # 删除页面四周可能会留下的完全空白的textblock,这种block形成原因未知
  265. """出现在图片、表格上的文字块去掉,把层叠的图片单独分离出来,不参与layout的计算"""
  266. (
  267. image_bboxes,
  268. table_bboxes,
  269. equations_interline_bboxes,
  270. equations_inline_bboxes,
  271. remain_text_blocks,
  272. text_block_on_image_removed,
  273. images_overlap_backup,
  274. interline_eq_temp_text_block,
  275. ) = resolve_bbox_overlap_conflict(
  276. image_bboxes,
  277. table_bboxes,
  278. equations_interline_bboxes,
  279. equations_inline_bboxes,
  280. remain_text_blocks,
  281. )
  282. # """去掉footnote, 从文字和图片中"""
  283. # # 通过模型识别到的footnote
  284. # footnote_bboxes_by_model = parse_footnotes_by_model(page_id, page, model_output_json, md_bookname_save_path,
  285. # debug_mode=debug_mode)
  286. # # 通过规则识别到的footnote
  287. # footnote_bboxes_by_rule = parse_footnotes_by_rule(remain_text_blocks, page_height, page_id)
  288. """
  289. ==================================================================================================================================
  290. """
  291. if debug_mode: # debugmode截图到本地
  292. save_path = join_path(save_tmp_path, "md")
  293. # 把图、表、公式都进行截图,保存到存储上,返回图片路径作为内容
  294. image_info, image_backup_info, table_info, inline_eq_info, interline_eq_info = (
  295. save_images_by_bboxes(
  296. book_name,
  297. page_id,
  298. page,
  299. save_path,
  300. image_bboxes,
  301. images_overlap_backup,
  302. table_bboxes,
  303. equations_inline_bboxes,
  304. equations_interline_bboxes,
  305. # 传入img_s3_client
  306. img_s3_client,
  307. )
  308. ) # 只要表格和图片的截图
  309. """"以下进入到公式替换环节 """
  310. char_level_text_blocks = page.get_text("rawdict", flags=fitz.TEXTFLAGS_TEXT)[
  311. "blocks"
  312. ]
  313. remain_text_blocks = combine_chars_to_pymudict(
  314. remain_text_blocks, char_level_text_blocks
  315. ) # 合并chars
  316. remain_text_blocks = replace_equations_in_textblock(
  317. remain_text_blocks, inline_eq_info, interline_eq_info
  318. )
  319. remain_text_blocks = remove_citation_marker(
  320. remain_text_blocks
  321. ) # 公式替换之后去角标,防止公式无法替换成功。但是这样也会带来个问题就是把角标当公式。各有优劣。
  322. remain_text_blocks = remove_chars_in_text_blocks(
  323. remain_text_blocks
  324. ) # 减少中间态数据体积
  325. # debug_show_bbox(pdf_docs, page_id, [b['bbox'] for b in inline_eq_info], [b['bbox'] for b in interline_eq_info], [], join_path(save_path, book_name, f"{book_name}_debug.pdf"), 3)
  326. """去掉footnote, 从文字和图片中(先去角标再去footnote试试)"""
  327. # 通过模型识别到的footnote
  328. footnote_bboxes_by_model = parse_footnotes_by_model(
  329. page_id,
  330. page,
  331. model_output_json,
  332. md_bookname_save_path,
  333. debug_mode=debug_mode,
  334. )
  335. # 通过规则识别到的footnote
  336. footnote_bboxes_by_rule = parse_footnotes_by_rule(
  337. remain_text_blocks, page_height, page_id, main_text_font
  338. )
  339. """进入pdf过滤器,去掉一些不合理的pdf"""
  340. is_good_pdf, err = pdf_filter(
  341. page, remain_text_blocks, table_bboxes, image_bboxes
  342. )
  343. if not is_good_pdf:
  344. logger.warning(
  345. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {err}"
  346. )
  347. if not debug_mode:
  348. return err
  349. """
  350. ==================================================================================================================================
  351. 进行版面布局切分和过滤
  352. """
  353. """在切分之前,先检查一下bbox是否有左右重叠的情况,如果有,那么就认为这个pdf暂时没有能力处理好,这种左右重叠的情况大概率是由于pdf里的行间公式、表格没有被正确识别出来造成的 """
  354. is_text_block_horz_overlap = check_text_block_horizontal_overlap(
  355. remain_text_blocks, header_bboxs, footer_bboxs
  356. )
  357. if is_text_block_horz_overlap:
  358. # debug_show_bbox(pdf_docs, page_id, [b['bbox'] for b in remain_text_blocks], [], [], join_path(save_path, book_name, f"{book_name}_debug.pdf"), 0)
  359. logger.warning(
  360. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {DropReason.TEXT_BLCOK_HOR_OVERLAP}"
  361. )
  362. result = {
  363. "need_drop": True,
  364. "drop_reason": DropReason.TEXT_BLCOK_HOR_OVERLAP,
  365. }
  366. if not debug_mode:
  367. return result
  368. """统一格式化成一个数据结构用于计算layout"""
  369. page_y0 = 0 if len(header_bboxs) == 0 else max([b[3] for b in header_bboxs])
  370. page_y1 = (
  371. page_height if len(footer_bboxs) == 0 else min([b[1] for b in footer_bboxs])
  372. )
  373. left_x, right_x = get_side_boundry(
  374. removed_non_horz_text_block, page_width, page_height
  375. )
  376. page_boundry = [
  377. math.floor(left_x),
  378. page_y0 + 1,
  379. math.ceil(right_x),
  380. page_y1 - 1,
  381. ]
  382. # 返回的是一个数组,每个元素[x0, y0, x1, y1, block_content, idx_x, idx_y], 初始时候idx_x, idx_y都是None. 对于图片、公式来说,block_content是图片的地址, 对于段落来说,block_content是段落的内容
  383. all_bboxes = prepare_bboxes_for_layout_split(
  384. image_info,
  385. image_backup_info,
  386. table_info,
  387. inline_eq_info,
  388. interline_eq_info,
  389. remain_text_blocks,
  390. page_boundry,
  391. page,
  392. )
  393. # debug_show_bbox(pdf_docs, page_id, [], [], all_bboxes, join_path(save_path, book_name, f"{book_name}_debug.pdf"), 1)
  394. """page_y0, page_y1能够过滤掉页眉和页脚,不会算作layout内"""
  395. layout_bboxes, layout_tree = get_bboxes_layout(
  396. all_bboxes, page_boundry, page_id
  397. )
  398. if (
  399. len(remain_text_blocks) > 0
  400. and len(all_bboxes) > 0
  401. and len(layout_bboxes) == 0
  402. ):
  403. logger.warning(
  404. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {DropReason.CAN_NOT_DETECT_PAGE_LAYOUT}"
  405. )
  406. result = {
  407. "need_drop": True,
  408. "drop_reason": DropReason.CAN_NOT_DETECT_PAGE_LAYOUT,
  409. }
  410. if not debug_mode:
  411. return result
  412. """以下去掉复杂的布局和超过2列的布局"""
  413. if any(
  414. [lay["layout_label"] == LAYOUT_UNPROC for lay in layout_bboxes]
  415. ): # 复杂的布局
  416. logger.warning(
  417. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {DropReason.COMPLICATED_LAYOUT}"
  418. )
  419. result = {"need_drop": True, "drop_reason": DropReason.COMPLICATED_LAYOUT}
  420. if not debug_mode:
  421. return result
  422. layout_column_width = get_columns_cnt_of_layout(layout_tree)
  423. if layout_column_width > 2: # 去掉超过2列的布局pdf
  424. logger.warning(
  425. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {DropReason.TOO_MANY_LAYOUT_COLUMNS}"
  426. )
  427. result = {
  428. "need_drop": True,
  429. "drop_reason": DropReason.TOO_MANY_LAYOUT_COLUMNS,
  430. "extra_info": {"column_cnt": layout_column_width},
  431. }
  432. if not debug_mode:
  433. return result
  434. """
  435. ==================================================================================================================================
  436. 构造出下游需要的数据结构
  437. """
  438. remain_text_blocks = (
  439. remain_text_blocks + interline_eq_temp_text_block
  440. ) # 把计算layout时候临时删除的行间公式再放回去,防止行间公式替换的时候丢失。
  441. removed_text_blocks = []
  442. removed_text_blocks.extend(removed_hdr_foot_txt_block)
  443. # removed_text_blocks.extend(removed_footnote_text_block)
  444. removed_text_blocks.extend(text_block_on_image_removed)
  445. removed_text_blocks.extend(removed_non_horz_text_block)
  446. removed_text_blocks.extend(removed_colored_narrow_strip_background_text_block)
  447. removed_images = []
  448. # removed_images.extend(footnote_imgs)
  449. removed_images.extend(removed_hdr_foot_img_block)
  450. images_backup = []
  451. images_backup.extend(image_backup_info)
  452. remain_text_blocks = escape_special_markdown_char(
  453. remain_text_blocks
  454. ) # 转义span里的text
  455. sorted_text_remain_text_block = sort_text_block(
  456. remain_text_blocks, layout_bboxes
  457. )
  458. footnote_bboxes_tmp = []
  459. footnote_bboxes_tmp.extend(footnote_bboxes_by_model)
  460. footnote_bboxes_tmp.extend(footnote_bboxes_by_rule)
  461. page_info = construct_page_component(
  462. page_id,
  463. image_info,
  464. table_info,
  465. sorted_text_remain_text_block,
  466. layout_bboxes,
  467. inline_eq_info,
  468. interline_eq_info,
  469. page.get_text("dict", flags=fitz.TEXTFLAGS_TEXT)["blocks"],
  470. removed_text_blocks=removed_text_blocks,
  471. removed_image_blocks=removed_images,
  472. images_backup=images_backup,
  473. droped_table_block=[],
  474. table_backup=[],
  475. layout_tree=layout_tree,
  476. page_w=page.rect.width,
  477. page_h=page.rect.height,
  478. footnote_bboxes_tmp=footnote_bboxes_tmp,
  479. )
  480. page_info["image_bboxes_with_caption"] = image_bboxes_with_caption # add by xr
  481. page_info["table_bboxes_with_caption"] = table_bboxes_with_caption
  482. page_info["bak_page_no_bboxes"] = page_no_bboxs
  483. page_info["bak_header_bboxes"] = header_bboxs
  484. page_info["bak_footer_bboxes"] = footer_bboxs
  485. page_info["bak_footer_note_bboxes"] = footnote_bboxes_tmp
  486. pdf_info_dict[f"page_{page_id}"] = page_info
  487. # end page for
  488. """计算后处理阶段耗时"""
  489. start_time = time.time()
  490. """
  491. ==================================================================================================================================
  492. 去掉页眉和页脚,这里需要用到一定的统计量,所以放到最后
  493. 页眉和页脚主要从文本box和图片box中去除,位于页面的四周。
  494. 下面函数会直接修改pdf_info_dict,从文字块中、图片中删除属于页眉页脚的内容,删除内容做相对应记录
  495. """
  496. # 去页眉页脚
  497. header, footer = drop_footer_header(
  498. pdf_info_dict
  499. ) # TODO: using header and footer boxes here !
  500. """对单个layout内footnote和他下面的所有textbbox合并"""
  501. for page_key, page_info in pdf_info_dict.items():
  502. page_info = merge_footnote_blocks(page_info, main_text_font)
  503. page_info = remove_footnote_blocks(page_info)
  504. pdf_info_dict[page_key] = page_info
  505. """进入pdf后置过滤器,去掉一些不合理的pdf"""
  506. i = 0
  507. for page_info in pdf_info_dict.values():
  508. is_good_pdf, err = pdf_post_filter(page_info)
  509. if not is_good_pdf:
  510. logger.warning(f"page_id: {i}, drop this pdf: {book_name}, reason: {err}")
  511. if not debug_mode:
  512. return err
  513. i += 1
  514. if debug_mode:
  515. params_file_save_path = join_path(
  516. save_tmp_path, "md", book_name, "preproc_out.json"
  517. )
  518. page_draw_rect_save_path = join_path(
  519. save_tmp_path, "md", book_name, "layout.pdf"
  520. )
  521. # dir_path = os.path.dirname(page_draw_rect_save_path)
  522. # if not os.path.exists(dir_path):
  523. # # 如果目录不存在,创建它
  524. # os.makedirs(dir_path)
  525. with open(params_file_save_path, "w", encoding="utf-8") as f:
  526. json.dump(pdf_info_dict, f, ensure_ascii=False, indent=4)
  527. # 先检测本地 page_draw_rect_save_path 是否存在,如果存在则删除
  528. if os.path.exists(page_draw_rect_save_path):
  529. os.remove(page_draw_rect_save_path)
  530. # 绘制bbox和layout到pdf
  531. draw_bbox_on_page(pdf_docs, pdf_info_dict, page_draw_rect_save_path)
  532. draw_layout_bbox_on_page(
  533. pdf_docs, pdf_info_dict, header, footer, page_draw_rect_save_path
  534. )
  535. if debug_mode:
  536. # 打印后处理阶段耗时
  537. logger.info(f"post_processing_time: {get_delta_time(start_time)}")
  538. """
  539. ==================================================================================================================================
  540. 进入段落处理-2阶段
  541. """
  542. # 处理行内文字间距较大问题
  543. pdf_info_dict = solve_inline_too_large_interval(pdf_info_dict)
  544. start_time = time.time()
  545. para_process_pipeline = ParaProcessPipeline()
  546. def _deal_with_text_exception(error_info):
  547. logger.warning(
  548. f"page_id: {page_id}, drop this pdf: {book_name}, reason: {error_info}"
  549. )
  550. if error_info == denseSingleLineBlockException_msg:
  551. logger.warning(
  552. f"Drop this pdf: {book_name}, reason: {DropReason.DENSE_SINGLE_LINE_BLOCK}"
  553. )
  554. result = {
  555. "need_drop": True,
  556. "drop_reason": DropReason.DENSE_SINGLE_LINE_BLOCK,
  557. }
  558. return result
  559. if error_info == titleDetectionException_msg:
  560. logger.warning(
  561. f"Drop this pdf: {book_name}, reason: {DropReason.TITLE_DETECTION_FAILED}"
  562. )
  563. result = {
  564. "need_drop": True,
  565. "drop_reason": DropReason.TITLE_DETECTION_FAILED,
  566. }
  567. return result
  568. elif error_info == titleLevelException_msg:
  569. logger.warning(
  570. f"Drop this pdf: {book_name}, reason: {DropReason.TITLE_LEVEL_FAILED}"
  571. )
  572. result = {"need_drop": True, "drop_reason": DropReason.TITLE_LEVEL_FAILED}
  573. return result
  574. elif error_info == paraSplitException_msg:
  575. logger.warning(
  576. f"Drop this pdf: {book_name}, reason: {DropReason.PARA_SPLIT_FAILED}"
  577. )
  578. result = {"need_drop": True, "drop_reason": DropReason.PARA_SPLIT_FAILED}
  579. return result
  580. elif error_info == paraMergeException_msg:
  581. logger.warning(
  582. f"Drop this pdf: {book_name}, reason: {DropReason.PARA_MERGE_FAILED}"
  583. )
  584. result = {"need_drop": True, "drop_reason": DropReason.PARA_MERGE_FAILED}
  585. return result
  586. if debug_mode:
  587. input_pdf_file = f"{pdf_local_path}.pdf"
  588. output_dir = f"{save_path}/{book_name}"
  589. output_pdf_file = f"{output_dir}/pdf_annos.pdf"
  590. """
  591. Call the para_process_pipeline function to process the pdf_info_dict.
  592. Parameters:
  593. para_debug_mode: str or None
  594. If para_debug_mode is None, the para_process_pipeline will not keep any intermediate results.
  595. If para_debug_mode is "simple", the para_process_pipeline will only keep the annos on the pdf and the final results as a json file.
  596. If para_debug_mode is "full", the para_process_pipeline will keep all the intermediate results generated during each step.
  597. """
  598. pdf_info_dict, error_info = para_process_pipeline.para_process_pipeline(
  599. pdf_info_dict,
  600. para_debug_mode="simple",
  601. input_pdf_path=input_pdf_file,
  602. output_pdf_path=output_pdf_file,
  603. )
  604. # 打印段落处理阶段耗时
  605. logger.info(f"para_process_time: {get_delta_time(start_time)}")
  606. # debug的时候不return drop信息
  607. if error_info is not None:
  608. _deal_with_text_exception(error_info)
  609. return pdf_info_dict
  610. else:
  611. pdf_info_dict, error_info = para_process_pipeline.para_process_pipeline(
  612. pdf_info_dict
  613. )
  614. if error_info is not None:
  615. return _deal_with_text_exception(error_info)
  616. return pdf_info_dict