pic_pos_judge.py 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #!/usr/bin/env/python
  2. # -*- coding:utf-8 -*-
  3. import re
  4. def img_regroup(item_list, row_list):
  5. """
  6. 判断图片是否存在错位,否则重新划分所属
  7. 排除 某个题的题文都是图片的情况!!!
  8. :param item_list: 第一次进行题目切分的结果
  9. :param row_list: all行文本
  10. :return:
  11. """
  12. # ------------题目开头图片分错判断---统计信息-----------------
  13. no_pic_id = [] # 没有图但有信息的题目id
  14. item_pic_end = [] # 收集题目末尾的图片
  15. have_pic_info = [0] * len(item_list) # 是否有图片
  16. item_pic_type1_id = [] # ‘susp_pic’
  17. temp_res = []
  18. bef_con = item_list[0]["stem"] # bef_con:前一个题的题文
  19. for k, sub_res in enumerate(item_list):
  20. sub_res = sub_res.copy()
  21. raw_cont = sub_res["stem"]
  22. # end_pic = []
  23. # if re.match(r"\n*\s*(<imgsrc.*?/>[\s\n]*)*?$", sub_res["stem"]) is None:
  24. end_pic = re.findall("\n(<imgsrc\d+ w_h=[^A-Z$]*?/>\s*(<imgsrc\d+ w_h=[^A-Z$]*?/>)*?)\n?$", sub_res["stem"])
  25. # print(end_pic)
  26. if end_pic:
  27. item_pic_end.append(re.findall("<imgsrc.+?/>", end_pic[0][0]))
  28. temp_res.append(sub_res)
  29. temp_res[-1]["stem"] = re.split("\n<imgsrc.+?/>\s*(<imgsrc((?!/>).)+?/>)*?\n?$", sub_res["stem"])[0]
  30. # 判断下该图片后面是否存在很多空行,不存在则加标识
  31. pic_temp_id = [k1 for k1, r in enumerate(row_list) if item_pic_end[-1][0] in r]
  32. is_konghang = []
  33. for r in row_list[pic_temp_id[0] + 1:]:
  34. if not re.sub(r"[\s\n\t]", "", r):
  35. is_konghang.append(1)
  36. else:
  37. break
  38. if len(is_konghang)<2:
  39. item_pic_end[-1].append("#@#")
  40. else:
  41. item_pic_end.append("")
  42. temp_res.append(sub_res)
  43. if 'susp_pic' in sub_res:
  44. item_pic_type1_id.append(k)
  45. # 统计---本题没有图片,前一题有图片,且本题提示了图片信息---这样的题目id
  46. if re.search("如[上下左右]?图|下[面列]图中", raw_cont):
  47. have_pic_info[k] = 1
  48. if "imgsrc" not in raw_cont:
  49. if k > 0 and "imgsrc" in bef_con and 'susp_pic' not in sub_res: # 从第2题开始
  50. no_pic_id.append(k)
  51. bef_con = raw_cont # item_list[k-1]["stem"]和raw_cont对不上,不知道为啥
  52. print("no_pic_id索引:", no_pic_id)
  53. print("item_pic_type1_id:", item_pic_type1_id)
  54. print("item_pic_end:",item_pic_end,len(item_pic_end))
  55. # pprint(temp_res)
  56. # 开始图片位置纠错--------------------------------------------------
  57. right_after_corret = True
  58. if no_pic_id: # 图片可能是公式图片或公式截图
  59. for nn, i in enumerate(no_pic_id):
  60. st = 0 if nn == 0 else no_pic_id[nn - 1] + 1
  61. if item_pic_end[i - 1] and "#@#" in item_pic_end[i - 1]:
  62. temp_res[i]["stem"] += "\n" + item_pic_end[i - 1][-2] # 默认取一个
  63. if item_pic_end[i - 1][:-2]:
  64. temp_res[i-1]["stem"] += "\n" + "\n".join(item_pic_end[i - 1][:-2])
  65. item_pic_end[i - 1] = "" # 取完后图片要清空
  66. else:
  67. temp_res[i]['errmsgs'].append("本题缺图片")
  68. bef_id_list = list(range(st, i))
  69. bef_id_list.reverse()
  70. for j in bef_id_list: # 从当前位置向前继续判断
  71. # print(j,'--------------',item_pic_end[j - 1])
  72. if have_pic_info[j]: # 有图片信息,
  73. if "imgsrc" not in temp_res[j]["stem"]: # 没图片
  74. if 'susp_pic' in temp_res[j]:
  75. temp_res[j]["stem"] += "\n" + "\n".join(temp_res[j]['susp_pic'])
  76. del temp_res[j]['susp_pic']
  77. elif not item_pic_end[j]: # 本身末尾没图片时
  78. if j > 0 and item_pic_end[j - 1] and "#@#" in item_pic_end[j - 1]:
  79. temp_res[j]["stem"] += "\n" + item_pic_end[j - 1][-2]
  80. if len(item_pic_end[j - 1][:-1]) > 1:
  81. temp_res[j - 1]["stem"] += "\n" + "\n".join(item_pic_end[j - 1][:-2])
  82. item_pic_end[j - 1] = ""
  83. else:
  84. temp_res[j]['errmsgs'].append("本题缺图片")
  85. print("第{}题缺图片".format(str(temp_res[j]['item_id']))) # 本身有吗?
  86. right_after_corret = False
  87. else:
  88. temp_res[j]["stem"] += "\n" + "\n".join(item_pic_end[j]).replace("#@#", "")
  89. item_pic_end[j] = ""
  90. elif item_pic_end[j-1] and "#@#" in item_pic_end[j-1]: # 有图片,(但不一定就是如图的“图”),且前一题末尾有图
  91. print("第{}题可能漏图片".format(str(temp_res[j]['item_id'])))
  92. if not have_pic_info[j - 1] or (j > 1 and item_pic_end[j - 2] and "#@#" in item_pic_end[j-2]): # 前面一题没有图片信息或前前一题末尾有图片时
  93. if not item_pic_end[j]: # 本题末尾没有图片
  94. temp_res[j]["stem"] += "\n" + item_pic_end[j - 1][-2]
  95. if len(item_pic_end[j - 1][:-1]) > 1:
  96. temp_res[j - 1]["stem"] += "\n" + "\n".join(item_pic_end[j - 1][:-2])
  97. item_pic_end[j - 1] = ""
  98. else: # 本身有图片的话,用自己的
  99. temp_res[j]["stem"] += "\n" + "\n".join(item_pic_end[j]).replace("#@#", "")
  100. item_pic_end[j] = ""
  101. else:
  102. temp_res[j - 1]["stem"] += "\n" + "\n".join(item_pic_end[j - 1]).replace("#@#", "")
  103. item_pic_end[j - 1] = ""
  104. elif item_pic_end[j]: # 当前题末尾有图
  105. temp_res[j]["stem"] += "\n" + "\n".join(item_pic_end[j]).replace("#@#", "")
  106. item_pic_end[j] = ""
  107. else: # 其他图片信息关键字没匹配到,可能 会漏掉
  108. if item_pic_end[j]:
  109. temp_res[j]["stem"] += "\n" + "\n".join(item_pic_end[j]).replace("#@#", "")
  110. item_pic_end[j] = ""
  111. if right_after_corret:
  112. item_list = temp_res
  113. # else:
  114. if item_pic_type1_id:
  115. for i in item_pic_type1_id:
  116. if 'susp_pic' in temp_res[i]:
  117. temp_res[i]["stem"] += "\n" + "\n".join(temp_res[i]['susp_pic'])
  118. return item_list