|
import time
|
|
import re
|
|
import json
|
|
import io
|
|
import os
|
|
from PIL import Image, ImageChops, ImageDraw
|
|
from typing import List, Dict
|
|
import pandas as pd
|
|
|
|
|
|
from pdfminer.high_level import extract_pages
|
|
from pdfminer.layout import LTTextContainer, LTChar, LTTextLine, LTTextLineHorizontal, LTAnno
|
|
from pikepdf import Pdf, Dictionary, Name
|
|
import gradio as gr
|
|
from gradio import Progress
|
|
|
|
from collections import defaultdict
|
|
|
|
from tools.custom_image_analyser_engine import CustomImageAnalyzerEngine, OCRResult, combine_ocr_results, CustomImageRecognizerResult
|
|
from tools.file_conversion import process_file
|
|
from tools.load_spacy_model_custom_recognisers import nlp_analyser, score_threshold
|
|
from tools.helper_functions import get_file_path_end, output_folder
|
|
from tools.file_conversion import process_file, is_pdf, convert_text_pdf_to_img_pdf, is_pdf_or_image
|
|
from tools.data_anonymise import generate_decision_process_output
|
|
from tools.aws_textract import analyse_page_with_textract, convert_pike_pdf_page_to_bytes, json_to_ocrresult
|
|
|
|
def sum_numbers_before_seconds(string:str):
|
|
"""Extracts numbers that precede the word 'seconds' from a string and adds them up.
|
|
|
|
Args:
|
|
string: The input string.
|
|
|
|
Returns:
|
|
The sum of all numbers before 'seconds' in the string.
|
|
"""
|
|
|
|
|
|
numbers = re.findall(r'(\d+\.\d+)?\s*seconds', string)
|
|
|
|
|
|
numbers = [float(num.split()[0]) for num in numbers]
|
|
|
|
|
|
sum_of_numbers = round(sum(numbers),1)
|
|
|
|
return sum_of_numbers
|
|
|
|
def choose_and_run_redactor(file_paths:List[str], image_paths:List[str], language:str, chosen_redact_entities:List[str], in_redact_method:str, in_allow_list:List[List[str]]=None, latest_file_completed:int=0, out_message:list=[], out_file_paths:list=[], log_files_output_paths:list=[], first_loop_state:bool=False, page_min:int=0, page_max:int=999, estimated_time_taken_state:float=0.0, handwrite_signature_checkbox:List[str]=["Redact all identified handwriting", "Redact all identified signatures"], all_request_metadata_str:str = "", progress=gr.Progress(track_tqdm=True)):
|
|
'''
|
|
Based on the type of redaction selected, pass the document file content onto the relevant function and return a redacted document plus processing logs.
|
|
'''
|
|
|
|
tic = time.perf_counter()
|
|
all_request_metadata = all_request_metadata_str.split('\n') if all_request_metadata_str else []
|
|
|
|
|
|
if first_loop_state==True:
|
|
latest_file_completed = 0
|
|
|
|
out_file_paths = []
|
|
|
|
|
|
if isinstance(out_message, str):
|
|
out_message = [out_message]
|
|
|
|
if not out_file_paths:
|
|
out_file_paths = []
|
|
|
|
latest_file_completed = int(latest_file_completed)
|
|
|
|
|
|
if latest_file_completed >= len(file_paths):
|
|
print("Last file reached")
|
|
|
|
latest_file_completed = 99
|
|
final_out_message = '\n'.join(out_message)
|
|
|
|
|
|
estimate_total_processing_time = sum_numbers_before_seconds(final_out_message)
|
|
print("Estimated total processing time:", str(estimate_total_processing_time))
|
|
|
|
return final_out_message, out_file_paths, out_file_paths, latest_file_completed, log_files_output_paths, log_files_output_paths, estimate_total_processing_time, all_request_metadata_str
|
|
|
|
file_paths_loop = [file_paths[int(latest_file_completed)]]
|
|
|
|
if not in_allow_list.empty:
|
|
in_allow_list_flat = in_allow_list[0].tolist()
|
|
print("In allow list:", in_allow_list_flat)
|
|
else:
|
|
in_allow_list_flat = []
|
|
|
|
progress(0.5, desc="Redacting file")
|
|
|
|
for file in file_paths_loop:
|
|
|
|
file_path = file.name
|
|
|
|
if file_path:
|
|
file_path_without_ext = get_file_path_end(file_path)
|
|
is_a_pdf = is_pdf(file_path) == True
|
|
if is_a_pdf == False:
|
|
|
|
print("File is not a pdf, assuming that image analysis needs to be used.")
|
|
in_redact_method = "Quick image analysis - typed text"
|
|
else:
|
|
out_message = "No file selected"
|
|
print(out_message)
|
|
return out_message, out_file_paths, out_file_paths, latest_file_completed, log_files_output_paths, log_files_output_paths, estimated_time_taken_state, all_request_metadata_str
|
|
|
|
if in_redact_method == "Quick image analysis - typed text" or in_redact_method == "Complex image analysis - docs with handwriting/signatures (AWS Textract)":
|
|
|
|
if is_pdf_or_image(file_path) == False:
|
|
out_message = "Please upload a PDF file or image file (JPG, PNG) for image analysis."
|
|
return out_message, out_file_paths, out_file_paths, latest_file_completed, log_files_output_paths, log_files_output_paths, estimated_time_taken_state, all_request_metadata_str
|
|
|
|
print("Redacting file " + file_path_without_ext + " as an image-based file")
|
|
pdf_images, redaction_logs, logging_file_paths, new_request_metadata = redact_image_pdf(file_path, image_paths, language, chosen_redact_entities, in_allow_list_flat, is_a_pdf, page_min, page_max, in_redact_method, handwrite_signature_checkbox)
|
|
|
|
|
|
out_image_file_path = output_folder + file_path_without_ext + "_redacted_as_img.pdf"
|
|
pdf_images[0].save(out_image_file_path, "PDF" ,resolution=100.0, save_all=True, append_images=pdf_images[1:])
|
|
|
|
out_file_paths.append(out_image_file_path)
|
|
if logging_file_paths:
|
|
log_files_output_paths.extend(logging_file_paths)
|
|
|
|
out_message.append("File '" + file_path_without_ext + "' successfully redacted")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logs_output_file_name = out_image_file_path + "_decision_process_output.csv"
|
|
redaction_logs.to_csv(logs_output_file_name)
|
|
log_files_output_paths.append(logs_output_file_name)
|
|
|
|
|
|
if new_request_metadata:
|
|
print("Request metadata:", new_request_metadata)
|
|
all_request_metadata.append(new_request_metadata)
|
|
|
|
|
|
if latest_file_completed != len(file_paths):
|
|
print("Completed file number:", str(latest_file_completed))
|
|
latest_file_completed += 1
|
|
|
|
elif in_redact_method == "Simple text analysis - PDFs with selectable text":
|
|
|
|
if is_pdf(file_path) == False:
|
|
return "Please upload a PDF file for text analysis. If you have an image, select 'Image analysis'.", None, None
|
|
|
|
|
|
print('Redacting file as text-based PDF')
|
|
pdf_text, decision_process_logs, page_text_outputs = redact_text_pdf(file_path, language, chosen_redact_entities, in_allow_list_flat, page_min, page_max, "Simple text analysis - PDFs with selectable text")
|
|
out_text_file_path = output_folder + file_path_without_ext + "_text_redacted.pdf"
|
|
pdf_text.save(out_text_file_path)
|
|
|
|
|
|
convert_message="Converting PDF to image-based PDF to embed redactions."
|
|
print(convert_message)
|
|
|
|
|
|
img_output_summary, img_output_file_path = convert_text_pdf_to_img_pdf(file_path, [out_text_file_path])
|
|
out_file_paths.extend(img_output_file_path)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logs_output_file_name = img_output_file_path[0] + "_decision_process_output.csv"
|
|
decision_process_logs.to_csv(logs_output_file_name)
|
|
log_files_output_paths.append(logs_output_file_name)
|
|
|
|
all_text_output_file_name = img_output_file_path[0] + "_all_text_output.csv"
|
|
page_text_outputs.to_csv(all_text_output_file_name)
|
|
log_files_output_paths.append(all_text_output_file_name)
|
|
|
|
out_message_new = "File '" + file_path_without_ext + "' successfully redacted"
|
|
out_message.append(out_message_new)
|
|
|
|
if latest_file_completed != len(file_paths):
|
|
print("Completed file number:", str(latest_file_completed), "more files to do")
|
|
latest_file_completed += 1
|
|
|
|
else:
|
|
out_message = "No redaction method selected"
|
|
print(out_message)
|
|
return out_message, out_file_paths, out_file_paths, latest_file_completed, log_files_output_paths, log_files_output_paths, estimated_time_taken_state, all_request_metadata_str
|
|
|
|
toc = time.perf_counter()
|
|
out_time = f"in {toc - tic:0.1f} seconds."
|
|
print(out_time)
|
|
|
|
out_message_out = '\n'.join(out_message)
|
|
out_message_out = out_message_out + " " + out_time
|
|
|
|
|
|
if all_request_metadata:
|
|
all_request_metadata_str = '\n'.join(all_request_metadata)
|
|
|
|
all_request_metadata_file_path = output_folder + file_path_without_ext + "_textract_request_metadata.txt"
|
|
|
|
with open(all_request_metadata_file_path, "w") as f:
|
|
f.write(all_request_metadata_str)
|
|
|
|
|
|
if all_request_metadata_file_path not in log_files_output_paths:
|
|
log_files_output_paths.append(all_request_metadata_file_path)
|
|
|
|
|
|
return out_message_out, out_file_paths, out_file_paths, latest_file_completed, log_files_output_paths, log_files_output_paths, estimated_time_taken_state, all_request_metadata_str
|
|
|
|
def bounding_boxes_overlap(box1, box2):
|
|
"""Check if two bounding boxes overlap."""
|
|
return (box1[0] < box2[2] and box2[0] < box1[2] and
|
|
box1[1] < box2[3] and box2[1] < box1[3])
|
|
|
|
def merge_img_bboxes(bboxes, combined_results: Dict, signature_recogniser_results=[], handwriting_recogniser_results=[], handwrite_signature_checkbox: List[str]=["Redact all identified handwriting", "Redact all identified signatures"], horizontal_threshold:int=50, vertical_threshold:int=12):
|
|
merged_bboxes = []
|
|
grouped_bboxes = defaultdict(list)
|
|
|
|
|
|
if signature_recogniser_results or handwriting_recogniser_results:
|
|
if "Redact all identified handwriting" in handwrite_signature_checkbox:
|
|
print("Handwriting boxes exist at merge:", handwriting_recogniser_results)
|
|
bboxes.extend(handwriting_recogniser_results)
|
|
|
|
if "Redact all identified signatures" in handwrite_signature_checkbox:
|
|
print("Signature boxes exist at merge:", signature_recogniser_results)
|
|
bboxes.extend(signature_recogniser_results)
|
|
|
|
|
|
reconstructed_bboxes = []
|
|
for bbox in bboxes:
|
|
bbox_box = (bbox.left, bbox.top, bbox.left + bbox.width, bbox.top + bbox.height)
|
|
for line_text, line_info in combined_results.items():
|
|
line_box = line_info['bounding_box']
|
|
if bounding_boxes_overlap(bbox_box, line_box):
|
|
if bbox.text in line_text:
|
|
start_char = line_text.index(bbox.text)
|
|
end_char = start_char + len(bbox.text)
|
|
|
|
relevant_words = []
|
|
current_char = 0
|
|
for word in line_info['words']:
|
|
word_end = current_char + len(word['text'])
|
|
if current_char <= start_char < word_end or current_char < end_char <= word_end or (start_char <= current_char and word_end <= end_char):
|
|
relevant_words.append(word)
|
|
if word_end >= end_char:
|
|
break
|
|
current_char = word_end
|
|
if not word['text'].endswith(' '):
|
|
current_char += 1
|
|
|
|
if relevant_words:
|
|
print("Relevant words:", relevant_words)
|
|
left = min(word['bounding_box'][0] for word in relevant_words)
|
|
top = min(word['bounding_box'][1] for word in relevant_words)
|
|
right = max(word['bounding_box'][2] for word in relevant_words)
|
|
bottom = max(word['bounding_box'][3] for word in relevant_words)
|
|
|
|
|
|
combined_text = " ".join(word['text'] for word in relevant_words)
|
|
|
|
reconstructed_bbox = CustomImageRecognizerResult(
|
|
bbox.entity_type,
|
|
bbox.start,
|
|
bbox.end,
|
|
bbox.score,
|
|
left,
|
|
top,
|
|
right - left,
|
|
bottom - top,
|
|
combined_text
|
|
)
|
|
reconstructed_bboxes.append(reconstructed_bbox)
|
|
break
|
|
else:
|
|
|
|
reconstructed_bboxes.append(bbox)
|
|
|
|
|
|
for box in reconstructed_bboxes:
|
|
grouped_bboxes[round(box.top / vertical_threshold)].append(box)
|
|
|
|
|
|
for _, group in grouped_bboxes.items():
|
|
group.sort(key=lambda box: box.left)
|
|
|
|
merged_box = group[0]
|
|
for next_box in group[1:]:
|
|
if next_box.left - (merged_box.left + merged_box.width) <= horizontal_threshold:
|
|
|
|
if merged_box.text == next_box.text:
|
|
new_text = merged_box.text
|
|
else:
|
|
new_text = merged_box.text + " " + next_box.text
|
|
|
|
new_left = min(merged_box.left, next_box.left)
|
|
new_top = min(merged_box.top, next_box.top)
|
|
new_width = max(merged_box.left + merged_box.width, next_box.left + next_box.width) - new_left
|
|
new_height = max(merged_box.top + merged_box.height, next_box.top + next_box.height) - new_top
|
|
merged_box = CustomImageRecognizerResult(
|
|
merged_box.entity_type, merged_box.start, merged_box.end, merged_box.score, new_left, new_top, new_width, new_height, new_text
|
|
)
|
|
else:
|
|
merged_bboxes.append(merged_box)
|
|
merged_box = next_box
|
|
|
|
merged_bboxes.append(merged_box)
|
|
|
|
return merged_bboxes
|
|
|
|
def redact_image_pdf(file_path:str, image_paths:List[str], language:str, chosen_redact_entities:List[str], allow_list:List[str]=None, is_a_pdf:bool=True, page_min:int=0, page_max:int=999, analysis_type:str="Quick image analysis - typed text", handwrite_signature_checkbox:List[str]=["Redact all identified handwriting", "Redact all identified signatures"], request_metadata:str="", progress=Progress(track_tqdm=True)):
|
|
'''
|
|
Take an path for an image of a document, then run this image through the Presidio ImageAnalyzer and PIL to get a redacted page back. Adapted from Presidio ImageRedactorEngine.
|
|
'''
|
|
|
|
logging_file_paths = []
|
|
file_name = get_file_path_end(file_path)
|
|
fill = (0, 0, 0)
|
|
decision_process_output_str = ""
|
|
images = []
|
|
|
|
image_analyser = CustomImageAnalyzerEngine(nlp_analyser)
|
|
|
|
if not image_paths:
|
|
out_message = "PDF does not exist as images. Converting pages to image"
|
|
print(out_message)
|
|
|
|
image_paths = process_file(file_path)
|
|
|
|
if not isinstance(image_paths, list):
|
|
print("Converting image_paths to list")
|
|
image_paths = [image_paths]
|
|
|
|
|
|
number_of_pages = len(image_paths[0])
|
|
|
|
print("Number of pages:", str(number_of_pages))
|
|
|
|
out_message = "Redacting pages"
|
|
print(out_message)
|
|
|
|
|
|
|
|
if page_max > number_of_pages or page_max == 0:
|
|
page_max = number_of_pages
|
|
|
|
if page_min <= 0:
|
|
page_min = 0
|
|
else:
|
|
page_min = page_min - 1
|
|
|
|
print("Page range:", str(page_min + 1), "to", str(page_max))
|
|
|
|
|
|
|
|
all_ocr_results = []
|
|
all_decision_process = []
|
|
all_line_level_ocr_results_df = pd.DataFrame()
|
|
all_decision_process_table = pd.DataFrame()
|
|
|
|
if analysis_type == "Quick image analysis - typed text": ocr_results_file_path = output_folder + "ocr_results_" + file_name + "_pages_" + str(page_min + 1) + "_" + str(page_max) + ".csv"
|
|
elif analysis_type == "Complex image analysis - docs with handwriting/signatures (AWS Textract)": ocr_results_file_path = output_folder + "ocr_results_" + file_name + "_pages_" + str(page_min + 1) + "_" + str(page_max) + "_textract.csv"
|
|
|
|
for n in range(0, number_of_pages):
|
|
handwriting_or_signature_boxes = []
|
|
signature_recogniser_results = []
|
|
handwriting_recogniser_results = []
|
|
|
|
try:
|
|
image = image_paths[0][n]
|
|
print("Skipping page", str(n))
|
|
|
|
except Exception as e:
|
|
print("Could not redact page:", str(n), "due to:")
|
|
print(e)
|
|
continue
|
|
|
|
if n >= page_min and n < page_max:
|
|
|
|
i = n
|
|
|
|
reported_page_number = str(i + 1)
|
|
|
|
print("Redacting page", reported_page_number)
|
|
|
|
|
|
|
|
try:
|
|
image = image_paths[0][i]
|
|
|
|
except Exception as e:
|
|
print("Could not redact page:", reported_page_number, "due to:")
|
|
print(e)
|
|
continue
|
|
|
|
|
|
page_width, page_height = image.size
|
|
|
|
|
|
if language == 'en':
|
|
ocr_lang = 'eng'
|
|
else: ocr_lang = language
|
|
|
|
|
|
if analysis_type == "Quick image analysis - typed text":
|
|
|
|
word_level_ocr_results = image_analyser.perform_ocr(image)
|
|
|
|
|
|
line_level_ocr_results, line_level_ocr_results_with_children = combine_ocr_results(word_level_ocr_results)
|
|
|
|
|
|
|
|
|
|
ocr_results_with_children_str = str(line_level_ocr_results_with_children)
|
|
logs_output_file_name = output_folder + "ocr_with_children.txt"
|
|
with open(logs_output_file_name, "w") as f:
|
|
f.write(ocr_results_with_children_str)
|
|
|
|
|
|
if analysis_type == "Complex image analysis - docs with handwriting/signatures (AWS Textract)":
|
|
|
|
|
|
image_buffer = io.BytesIO()
|
|
image.save(image_buffer, format='PNG')
|
|
pdf_page_as_bytes = image_buffer.getvalue()
|
|
|
|
json_file_path = output_folder + file_name + "_page_" + reported_page_number + "_textract.json"
|
|
|
|
if not os.path.exists(json_file_path):
|
|
text_blocks, new_request_metadata = analyse_page_with_textract(pdf_page_as_bytes, json_file_path)
|
|
logging_file_paths.append(json_file_path)
|
|
request_metadata = request_metadata + "\n" + new_request_metadata
|
|
else:
|
|
|
|
print("Found existing Textract json results file for this page.")
|
|
with open(json_file_path, 'r') as json_file:
|
|
text_blocks = json.load(json_file)
|
|
text_blocks = text_blocks['Blocks']
|
|
|
|
line_level_ocr_results, handwriting_or_signature_boxes, signature_recogniser_results, handwriting_recogniser_results, line_level_ocr_results_with_children = json_to_ocrresult(text_blocks, page_width, page_height)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
redaction_bboxes = image_analyser.analyze_text(
|
|
line_level_ocr_results,
|
|
line_level_ocr_results_with_children,
|
|
language=language,
|
|
entities=chosen_redact_entities,
|
|
allow_list=allow_list,
|
|
score_threshold=score_threshold,
|
|
)
|
|
|
|
if analysis_type == "Quick image analysis - typed text": interim_results_file_path = output_folder + "interim_analyser_bboxes_" + file_name + "_pages_" + str(page_min + 1) + "_" + str(page_max) + ".txt"
|
|
elif analysis_type == "Complex image analysis - docs with handwriting/signatures (AWS Textract)": interim_results_file_path = output_folder + "interim_analyser_bboxes_" + file_name + "_pages_" + str(page_min + 1) + "_" + str(page_max) + "_textract.txt"
|
|
|
|
|
|
bboxes_str = str(redaction_bboxes)
|
|
with open(interim_results_file_path, "w") as f:
|
|
f.write(bboxes_str)
|
|
|
|
|
|
merged_redaction_bboxes = merge_img_bboxes(redaction_bboxes, line_level_ocr_results_with_children, signature_recogniser_results, handwriting_recogniser_results, handwrite_signature_checkbox)
|
|
|
|
|
|
|
|
|
|
draw = ImageDraw.Draw(image)
|
|
|
|
for box in merged_redaction_bboxes:
|
|
x0 = box.left
|
|
y0 = box.top
|
|
x1 = x0 + box.width
|
|
y1 = y0 + box.height
|
|
draw.rectangle([x0, y0, x1, y1], fill=fill)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
line_level_ocr_results_df = pd.DataFrame([{
|
|
'page': reported_page_number,
|
|
'text': result.text,
|
|
'left': result.left,
|
|
'top': result.top,
|
|
'width': result.width,
|
|
'height': result.height
|
|
} for result in line_level_ocr_results])
|
|
|
|
all_line_level_ocr_results_df = pd.concat([all_line_level_ocr_results_df, line_level_ocr_results_df])
|
|
|
|
|
|
|
|
if merged_redaction_bboxes:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
decision_process_table = pd.DataFrame([{
|
|
'page': reported_page_number,
|
|
'entity_type': result.entity_type,
|
|
'start': result.start,
|
|
'end': result.end,
|
|
'score': result.score,
|
|
'left': result.left,
|
|
'top': result.top,
|
|
'width': result.width,
|
|
'height': result.height,
|
|
'text': result.text
|
|
} for result in merged_redaction_bboxes])
|
|
|
|
all_decision_process_table = pd.concat([all_decision_process_table, decision_process_table])
|
|
|
|
images.append(image)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
all_line_level_ocr_results_df.to_csv(ocr_results_file_path)
|
|
logging_file_paths.append(ocr_results_file_path)
|
|
|
|
return images, all_decision_process_table, logging_file_paths, request_metadata
|
|
|
|
def analyze_text_container(text_container, language, chosen_redact_entities, score_threshold, allow_list):
|
|
if isinstance(text_container, LTTextContainer):
|
|
text_to_analyze = text_container.get_text()
|
|
|
|
analyzer_results = nlp_analyser.analyze(text=text_to_analyze,
|
|
language=language,
|
|
entities=chosen_redact_entities,
|
|
score_threshold=score_threshold,
|
|
return_decision_process=True,
|
|
allow_list=allow_list)
|
|
|
|
|
|
characters = [char
|
|
for line in text_container
|
|
if isinstance(line, LTTextLine) or isinstance(line, LTTextLineHorizontal)
|
|
for char in line]
|
|
|
|
return analyzer_results, characters
|
|
return [], []
|
|
|
|
def create_text_bounding_boxes_from_characters(char_objects:List[LTChar]) -> OCRResult:
|
|
'''
|
|
Create an OCRResult object based on a list of pdfminer LTChar objects.
|
|
'''
|
|
|
|
|
|
full_text = ""
|
|
overall_bbox = [float('inf'), float('inf'), float('-inf'), float('-inf')]
|
|
word_bboxes = []
|
|
|
|
|
|
current_word = ""
|
|
current_word_bbox = [float('inf'), float('inf'), float('-inf'), float('-inf')]
|
|
|
|
for char in char_objects:
|
|
if isinstance(char, LTAnno):
|
|
|
|
full_text += char.get_text()
|
|
if current_word:
|
|
word_bboxes.append((current_word, current_word_bbox))
|
|
current_word = ""
|
|
current_word_bbox = [float('inf'), float('inf'), float('-inf'), float('-inf')]
|
|
continue
|
|
|
|
|
|
full_text += char.get_text()
|
|
|
|
|
|
x0, y0, x1, y1 = char.bbox
|
|
overall_bbox[0] = min(overall_bbox[0], x0)
|
|
overall_bbox[1] = min(overall_bbox[1], y0)
|
|
overall_bbox[2] = max(overall_bbox[2], x1)
|
|
overall_bbox[3] = max(overall_bbox[3], y1)
|
|
|
|
|
|
current_word += char.get_text()
|
|
|
|
|
|
current_word_bbox[0] = min(current_word_bbox[0], x0)
|
|
current_word_bbox[1] = min(current_word_bbox[1], y0)
|
|
current_word_bbox[2] = max(current_word_bbox[2], x1)
|
|
current_word_bbox[3] = max(current_word_bbox[3], y1)
|
|
|
|
|
|
if current_word:
|
|
word_bboxes.append((current_word, current_word_bbox))
|
|
|
|
return OCRResult(full_text, overall_bbox[0], overall_bbox[1], overall_bbox[2], overall_bbox[3])
|
|
|
|
def merge_text_bounding_boxes(analyzer_results:CustomImageRecognizerResult, characters:List[LTChar], combine_pixel_dist:int, vertical_padding:int=2):
|
|
'''
|
|
Merge identified bounding boxes containing PII that are very close to one another
|
|
'''
|
|
analyzed_bounding_boxes = []
|
|
if len(analyzer_results) > 0 and len(characters) > 0:
|
|
|
|
bounding_boxes = []
|
|
text_out = []
|
|
for result in analyzer_results:
|
|
char_boxes = [char.bbox for char in characters[result.start:result.end] if isinstance(char, LTChar)]
|
|
char_text = [char._text for char in characters[result.start:result.end] if isinstance(char, LTChar)]
|
|
if char_boxes:
|
|
|
|
left = min(box[0] for box in char_boxes)
|
|
bottom = min(box[1] for box in char_boxes)
|
|
right = max(box[2] for box in char_boxes)
|
|
top = max(box[3] for box in char_boxes) + vertical_padding
|
|
bounding_boxes.append((bottom, left, result, [left, bottom, right, top], char_text))
|
|
|
|
char_text = "".join(char_text)
|
|
|
|
|
|
bounding_boxes.sort()
|
|
|
|
merged_bounding_boxes = []
|
|
current_box = None
|
|
current_y = None
|
|
current_result = None
|
|
current_text = []
|
|
|
|
for y, x, result, char_box, text in bounding_boxes:
|
|
|
|
|
|
|
|
if current_y is None or current_box is None:
|
|
current_box = char_box
|
|
current_y = char_box[1]
|
|
current_result = result
|
|
current_text = list(text)
|
|
|
|
else:
|
|
vertical_diff_bboxes = abs(char_box[1] - current_y)
|
|
horizontal_diff_bboxes = abs(char_box[0] - current_box[2])
|
|
|
|
|
|
|
|
|
|
if (
|
|
vertical_diff_bboxes <= 5
|
|
and horizontal_diff_bboxes <= combine_pixel_dist
|
|
):
|
|
current_box[2] = char_box[2]
|
|
current_box[3] = max(current_box[3], char_box[3])
|
|
current_result.end = max(current_result.end, result.end)
|
|
|
|
if current_text:
|
|
current_text.append(" ")
|
|
current_text.extend(text)
|
|
else:
|
|
merged_bounding_boxes.append(
|
|
{"text":"".join(current_text),"boundingBox": current_box, "result": current_result})
|
|
|
|
|
|
|
|
current_box = char_box
|
|
current_y = char_box[1]
|
|
current_result = result
|
|
current_text = list(text)
|
|
|
|
|
|
|
|
if current_box:
|
|
merged_bounding_boxes.append({"text":"".join(current_text), "boundingBox": current_box, "result": current_result})
|
|
|
|
|
|
if not merged_bounding_boxes:
|
|
analyzed_bounding_boxes.extend(
|
|
{"text":text, "boundingBox": char.bbox, "result": result}
|
|
for result in analyzer_results
|
|
for char in characters[result.start:result.end]
|
|
if isinstance(char, LTChar)
|
|
)
|
|
else:
|
|
analyzed_bounding_boxes.extend(merged_bounding_boxes)
|
|
|
|
|
|
|
|
return analyzed_bounding_boxes
|
|
|
|
def create_text_redaction_process_results(analyzer_results, analyzed_bounding_boxes, page_num):
|
|
decision_process_table = pd.DataFrame()
|
|
|
|
if len(analyzer_results) > 0:
|
|
|
|
analyzed_bounding_boxes_df_new = pd.DataFrame(analyzed_bounding_boxes)
|
|
analyzed_bounding_boxes_df_text = analyzed_bounding_boxes_df_new['result'].astype(str).str.split(",",expand=True).replace(".*: ", "", regex=True)
|
|
analyzed_bounding_boxes_df_text.columns = ["type", "start", "end", "score"]
|
|
analyzed_bounding_boxes_df_new = pd.concat([analyzed_bounding_boxes_df_new, analyzed_bounding_boxes_df_text], axis = 1)
|
|
analyzed_bounding_boxes_df_new['page'] = page_num + 1
|
|
decision_process_table = pd.concat([decision_process_table, analyzed_bounding_boxes_df_new], axis = 0).drop('result', axis=1)
|
|
|
|
print('\n\ndecision_process_table:\n\n', decision_process_table)
|
|
|
|
return decision_process_table
|
|
|
|
def create_annotations_for_bounding_boxes(analyzed_bounding_boxes):
|
|
annotations_on_page = []
|
|
for analyzed_bounding_box in analyzed_bounding_boxes:
|
|
bounding_box = analyzed_bounding_box["boundingBox"]
|
|
annotation = Dictionary(
|
|
Type=Name.Annot,
|
|
Subtype=Name.Square,
|
|
QuadPoints=[bounding_box[0], bounding_box[3], bounding_box[2], bounding_box[3],
|
|
bounding_box[0], bounding_box[1], bounding_box[2], bounding_box[1]],
|
|
Rect=[bounding_box[0], bounding_box[1], bounding_box[2], bounding_box[3]],
|
|
C=[0, 0, 0],
|
|
IC=[0, 0, 0],
|
|
CA=1,
|
|
T=analyzed_bounding_box["result"].entity_type,
|
|
BS=Dictionary(
|
|
W=0,
|
|
S=Name.S
|
|
)
|
|
)
|
|
annotations_on_page.append(annotation)
|
|
return annotations_on_page
|
|
|
|
def redact_text_pdf(filename:str, language:str, chosen_redact_entities:List[str], allow_list:List[str]=None, page_min:int=0, page_max:int=999, analysis_type:str = "Simple text analysis - PDFs with selectable text", progress=Progress(track_tqdm=True)):
|
|
'''
|
|
Redact chosen entities from a pdf that is made up of multiple pages that are not images.
|
|
'''
|
|
annotations_all_pages = []
|
|
decision_process_table_all_pages = pd.DataFrame()
|
|
|
|
combine_pixel_dist = 100
|
|
|
|
pdf = Pdf.open(filename)
|
|
page_num = 0
|
|
|
|
number_of_pages = len(pdf.pages)
|
|
|
|
|
|
if page_max > number_of_pages or page_max == 0:
|
|
page_max = number_of_pages
|
|
|
|
|
|
|
|
if page_min <= 0:
|
|
page_min = 0
|
|
else:
|
|
page_min = page_min - 1
|
|
|
|
print("Page range is",str(page_min), "to", str(page_max))
|
|
|
|
for page_no in range(page_min, page_max):
|
|
page = pdf.pages[page_no]
|
|
|
|
print("Page number is:", page_no)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
annotations_on_page = []
|
|
decision_process_table_on_page = pd.DataFrame()
|
|
|
|
for page_layout in extract_pages(filename, page_numbers = [page_no], maxpages=1):
|
|
|
|
page_analyzer_results = []
|
|
page_analyzed_bounding_boxes = []
|
|
text_container_analyzer_results = []
|
|
text_container_analyzed_bounding_boxes = []
|
|
characters = []
|
|
page_text_outputs = pd.DataFrame()
|
|
|
|
if analysis_type == "Simple text analysis - PDFs with selectable text":
|
|
for i, text_container in enumerate(page_layout):
|
|
|
|
text_container_analyzer_results, characters = analyze_text_container(text_container, language, chosen_redact_entities, score_threshold, allow_list)
|
|
|
|
|
|
line_level_text_results = create_text_bounding_boxes_from_characters(characters)
|
|
|
|
if line_level_text_results.text:
|
|
line_level_text_results_list = [line_level_text_results]
|
|
|
|
|
|
line_level_text_results_df = pd.DataFrame([{
|
|
'page': page_no + 1,
|
|
'text': result.text,
|
|
'left': result.left,
|
|
'top': result.top,
|
|
'width': result.width,
|
|
'height': result.height
|
|
} for result in line_level_text_results_list])
|
|
|
|
page_text_outputs = pd.concat([page_text_outputs, line_level_text_results_df])
|
|
|
|
|
|
text_container_analyzed_bounding_boxes = merge_text_bounding_boxes(text_container_analyzer_results, characters, combine_pixel_dist, vertical_padding = 2)
|
|
|
|
|
|
page_analyzer_results.extend(text_container_analyzer_results)
|
|
page_analyzed_bounding_boxes.extend(text_container_analyzed_bounding_boxes)
|
|
|
|
|
|
print("page_analyzer_results:", page_analyzer_results)
|
|
print("page_analyzed_bounding_boxes:", page_analyzed_bounding_boxes)
|
|
|
|
decision_process_table_on_page = create_text_redaction_process_results(page_analyzer_results, page_analyzed_bounding_boxes, page_num)
|
|
|
|
annotations_on_page = create_annotations_for_bounding_boxes(page_analyzed_bounding_boxes)
|
|
|
|
|
|
|
|
page.Annots = pdf.make_indirect(annotations_on_page)
|
|
annotations_all_pages.extend([annotations_on_page])
|
|
|
|
decision_process_table_all_pages = pd.concat([decision_process_table_all_pages, decision_process_table_on_page])
|
|
|
|
page_text_outputs = page_text_outputs.sort_values(["top", "left"], ascending=[False, False]).reset_index(drop=True)
|
|
|
|
|
|
print("For page number:", page_no, "there are", len(annotations_all_pages[page_num]), "annotations")
|
|
|
|
|
|
|
|
return pdf, decision_process_table_all_pages, page_text_outputs
|
|
|