diff --git a/README.md b/README.md index 7e0b907..4001b9e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,18 @@ +pip install --upgrade pip +pip install pdf2image + + +# Generate DocTags for all pages and run the visualizer +python doctags_gen.py --pdf document.pdf --output results/ && python create_index.py --directory results/ + python analyzer.py --image document.pdf --page 13 python visualizer.py --doctags output.doctags.txt --pdf document.pdf --page 13 --adjust --show -python analyzer.py --image document.pdf --page 13 && python visualizer.py --doctags output.doctags.txt --pdf document.pdf --page 13 --adjust --show \ No newline at end of file +python analyzer.py --image document.pdf --page 13 && python visualizer.py --doctags output.doctags.txt --pdf document.pdf --page 13 --adjust --show + + + +## Run full with scaling fix +python analyzer.py --image document.pdf --page 7 && python fix_scaling.py --doctags output.doctags.txt --output fixed_output.doctags.txt --x-factor 0.7 --y-factor 0.7 && python visualizer.py --doctags fixed_output.doctags.txt --pdf document.pdf --page 7 --adjust --show \ No newline at end of file diff --git a/fix_scaling.py b/fix_scaling.py index e69de29..fc4c1de 100644 --- a/fix_scaling.py +++ b/fix_scaling.py @@ -0,0 +1,196 @@ +#!/usr/bin/env python3 +""" +DocTags Scaling Fix - Script to fix scaling issues in the DocTags visualizer. + +Usage: + python fix_scaling.py --doctags output.doctags.txt --output fixed_output.doctags.txt +""" + +import argparse +import re +import sys +from pathlib import Path +import json + +# Regular expression to extract location data +LOC_PATTERN = r'' + +def parse_arguments(): + """Parse command line arguments.""" + parser = argparse.ArgumentParser(description='Fix scaling issues in DocTags output') + parser.add_argument('--doctags', '-d', type=str, required=True, + help='Path to original DocTags file') + parser.add_argument('--output', '-o', type=str, required=True, + help='Path to save the fixed DocTags file') + parser.add_argument('--x-factor', '-x', type=float, default=0.7, + help='X-axis scaling factor (default: 0.7)') + parser.add_argument('--y-factor', '-y', type=float, default=0.7, + help='Y-axis scaling factor (default: 0.7)') + parser.add_argument('--x-offset', type=int, default=0, + help='X-axis offset (default: 0)') + parser.add_argument('--y-offset', type=int, default=0, + help='Y-axis offset (default: 0)') + return parser.parse_args() + +def read_doctags_file(doctags_path): + """Read the DocTags file.""" + with open(doctags_path, 'r', encoding='utf-8') as f: + return f.read() + +def write_doctags_file(content, output_path): + """Write the fixed DocTags file.""" + with open(output_path, 'w', encoding='utf-8') as f: + f.write(content) + print(f"Fixed DocTags saved to: {output_path}") + +def fix_scaling(doctags_content, x_factor, y_factor, x_offset, y_offset): + """Apply scaling factors to all location tags in the DocTags content.""" + def apply_scaling(match): + x1, y1, x2, y2 = map(int, match.groups()) + + # Apply scaling and offset + new_x1 = int(x1 * x_factor) + x_offset + new_y1 = int(y1 * y_factor) + y_offset + new_x2 = int(x2 * x_factor) + x_offset + new_y2 = int(y2 * y_factor) + y_offset + + # Ensure coordinates are positive + new_x1 = max(0, new_x1) + new_y1 = max(0, new_y1) + new_x2 = max(0, new_x2) + new_y2 = max(0, new_y2) + + return f"" + + # Apply the scaling to all location tags + fixed_content = re.sub(LOC_PATTERN, apply_scaling, doctags_content) + + # Count how many replacements were made + original_matches = re.findall(LOC_PATTERN, doctags_content) + fixed_matches = re.findall(LOC_PATTERN, fixed_content) + + print(f"Modified {len(original_matches)} location tags") + + # Print before/after sample for the first few zones + if original_matches and fixed_matches: + print("\nBefore/After comparison (first 3 zones):") + for i, (orig, fixed) in enumerate(zip(original_matches, fixed_matches)): + if i >= 3: + break + orig_x1, orig_y1, orig_x2, orig_y2 = map(int, orig) + fixed_x1, fixed_y1, fixed_x2, fixed_y2 = map(int, fixed_matches[i]) + print(f"Zone {i+1}: ({orig_x1},{orig_y1},{orig_x2},{orig_y2}) → ({fixed_x1},{fixed_y1},{fixed_x2},{fixed_y2})") + + return fixed_content + +def analyze_doctags(doctags_content): + """Analyze the DocTags content to suggest scaling factors.""" + # Find all location tags + locations = re.findall(LOC_PATTERN, doctags_content) + + if not locations: + print("No location tags found in the DocTags file.") + return + + # Extract coordinates + coords = [(int(x1), int(y1), int(x2), int(y2)) for x1, y1, x2, y2 in locations] + + # Find the boundaries + min_x = min(min(x1, x2) for x1, y1, x2, y2 in coords) + min_y = min(min(y1, y2) for x1, y1, x2, y2 in coords) + max_x = max(max(x1, x2) for x1, y1, x2, y2 in coords) + max_y = max(max(y1, y2) for x1, y1, x2, y2 in coords) + + # Calculate average zone size + avg_width = sum(abs(x2 - x1) for x1, y1, x2, y2 in coords) / len(coords) + avg_height = sum(abs(y2 - y1) for x1, y1, x2, y2 in coords) / len(coords) + + print("\nDocTags Analysis:") + print(f"Found {len(locations)} zones with coordinates") + print(f"Coordinate boundaries: X({min_x}-{max_x}), Y({min_y}-{max_y})") + print(f"Average zone size: {avg_width:.1f} x {avg_height:.1f}") + + # Suggest appropriate scaling for standard page sizes + a4_width, a4_height = 595, 842 # A4 in points + + # Calculate suggested scaling to fit A4 + x_factor = a4_width / max_x if max_x > 0 else 1.0 + y_factor = a4_height / max_y if max_y > 0 else 1.0 + + # Apply some heuristics for common scaling issues + if max_x > 1000 and max_y > 1000: + print("\nDetected large coordinates - typical of high-resolution scans or OCR") + print("Suggested scaling factors for standard page:") + print(f"X-factor: {x_factor:.3f} (to fit width to A4)") + print(f"Y-factor: {y_factor:.3f} (to fit height to A4)") + elif max_x < 300 and max_y < 300: + print("\nDetected small coordinates - might be normalized values") + print("Suggested scaling factors for standard page:") + print(f"X-factor: {a4_width/300:.3f} (to expand to A4 width)") + print(f"Y-factor: {a4_height/300:.3f} (to expand to A4 height)") + + # Check for pattern inconsistencies (possible corruption or bad parsing) + widths = [abs(x2 - x1) for x1, y1, x2, y2 in coords] + heights = [abs(y2 - y1) for x1, y1, x2, y2 in coords] + width_std_dev = (sum((w - avg_width) ** 2 for w in widths) / len(widths)) ** 0.5 + height_std_dev = (sum((h - avg_height) ** 2 for h in heights) / len(heights)) ** 0.5 + + if width_std_dev > avg_width * 1.5 or height_std_dev > avg_height * 1.5: + print("\nWarning: High variance in zone sizes detected!") + print("This might indicate inconsistent scaling or parsing issues.") + + return { + 'min_x': min_x, 'max_x': max_x, 'min_y': min_y, 'max_y': max_y, + 'avg_width': avg_width, 'avg_height': avg_height, + 'suggested_x_factor': x_factor, 'suggested_y_factor': y_factor + } + +def main(): + args = parse_arguments() + + # Read the original DocTags file + try: + doctags_content = read_doctags_file(args.doctags) + print(f"Read DocTags file: {args.doctags} ({len(doctags_content)} bytes)") + except Exception as e: + print(f"Error reading DocTags file: {e}") + return 1 + + # Analyze the DocTags content + analysis = analyze_doctags(doctags_content) + + # Confirm with user + if not analysis: + print("No analysis could be performed. Using specified scaling factors.") + else: + print(f"\nYou specified x-factor={args.x_factor}, y-factor={args.y_factor}") + print(f"Analysis suggests x-factor={analysis.get('suggested_x_factor', 1.0):.3f}, " + f"y-factor={analysis.get('suggested_y_factor', 1.0):.3f}") + + use_suggested = input("\nUse suggested scaling factors instead? [y/N]: ").lower() + if use_suggested.startswith('y'): + args.x_factor = analysis.get('suggested_x_factor', args.x_factor) + args.y_factor = analysis.get('suggested_y_factor', args.y_factor) + print(f"Using suggested factors: x={args.x_factor:.3f}, y={args.y_factor:.3f}") + + # Apply the scaling fix + try: + fixed_content = fix_scaling(doctags_content, args.x_factor, args.y_factor, + args.x_offset, args.y_offset) + + # Save the fixed DocTags file + write_doctags_file(fixed_content, args.output) + + print("\nScaling fix complete!") + print("Run visualizer with the fixed DocTags file:") + print(f"python visualizer.py --doctags {args.output} --pdf your_document.pdf --page 1 --show") + + return 0 + except Exception as e: + print(f"Error applying scaling fix: {e}") + import traceback + traceback.print_exc() + return 1 + +if __name__ == "__main__": + sys.exit(main()) \ No newline at end of file diff --git a/results/page_001.doctags.txt b/results/page_001.doctags.txt new file mode 100644 index 0000000..b3ca803 --- /dev/null +++ b/results/page_001.doctags.txt @@ -0,0 +1,7 @@ + +Livret d'aide au diagnostic de panne électrique +POLYTROPIC Logo +LIVRET D'AIDE AU DIAGNOSTIC DE PANNE +Pompe à chaleur pour piscine 2017/2019 +1 + \ No newline at end of file diff --git a/results/page_001.doctags_viz_page_1.debug.png b/results/page_001.doctags_viz_page_1.debug.png new file mode 100644 index 0000000..0145f7a Binary files /dev/null and b/results/page_001.doctags_viz_page_1.debug.png differ diff --git a/results/page_001.doctags_viz_page_1.html b/results/page_001.doctags_viz_page_1.html new file mode 100644 index 0000000..9a8e7f7 --- /dev/null +++ b/results/page_001.doctags_viz_page_1.html @@ -0,0 +1,264 @@ + + + + + DocTags Zone Visualization - Page 1 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ picture +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ picture +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
picture
+
Position: (579, 350) - (1075, 700)
+ +
POLYTROPIC Logo
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
1
+ +
+ +
+ + + + diff --git a/results/page_002.doctags.txt b/results/page_002.doctags.txt new file mode 100644 index 0000000..69c0c63 --- /dev/null +++ b/results/page_002.doctags.txt @@ -0,0 +1,17 @@ + +Livret d'aide au diagnostic de panne électrique +SOMMAIRE +I. Identification des machines +3 +II. Fonctionnements +9 +III. Diagnostic de panne frigorifique +9 +IV. Logigramme de Diagnostic de pannes électriques +12 +V. Vérification des composants +16 +VI. Schémas électriques +VII. Dimensions, éclatés et pièces détachées + + \ No newline at end of file diff --git a/results/page_002.doctags_viz_page_2.debug.png b/results/page_002.doctags_viz_page_2.debug.png new file mode 100644 index 0000000..0d9a740 Binary files /dev/null and b/results/page_002.doctags_viz_page_2.debug.png differ diff --git a/results/page_002.doctags_viz_page_2.html b/results/page_002.doctags_viz_page_2.html new file mode 100644 index 0000000..2035bce --- /dev/null +++ b/results/page_002.doctags_viz_page_2.html @@ -0,0 +1,424 @@ + + + + + DocTags Zone Visualization - Page 2 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (65, 187) - (300, 327)
+ +
SOMMAIRE
+ +
+ +
+
text
+
Position: (65, 347) - (1454, 428)
+ +
I. Identification des machines
+ +
+ +
+
text
+
Position: (1554, 347) - (1589, 428)
+ +
3
+ +
+ +
+
text
+
Position: (65, 433) - (1454, 514)
+ +
II. Fonctionnements
+ +
+ +
+
text
+
Position: (1554, 433) - (1589, 514)
+ +
9
+ +
+ +
+
text
+
Position: (65, 519) - (1454, 600)
+ +
III. Diagnostic de panne frigorifique
+ +
+ +
+
text
+
Position: (1554, 519) - (1589, 600)
+ +
9
+ +
+ +
+
text
+
Position: (65, 605) - (1454, 686)
+ +
IV. Logigramme de Diagnostic de pannes électriques
+ +
+ +
+
text
+
Position: (1554, 605) - (1589, 686)
+ +
12
+ +
+ +
+
text
+
Position: (65, 691) - (1454, 772)
+ +
V. Vérification des composants
+ +
+ +
+
text
+
Position: (1554, 691) - (1589, 772)
+ +
16
+ +
+ +
+
text
+
Position: (65, 777) - (1454, 858)
+ +
VI. Schémas électriques
+ +
+ +
+
text
+
Position: (65, 863) - (1454, 944)
+ +
VII. Dimensions, éclatés et pièces détachées
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
+ +
+ +
+ + + + diff --git a/results/page_003.doctags.txt b/results/page_003.doctags.txt new file mode 100644 index 0000000..215998d --- /dev/null +++ b/results/page_003.doctags.txt @@ -0,0 +1,9 @@ + +Livret d'aide au diagnostic de panne électrique +Généralités avant toute intervention sur une pompe à chaleur. +1. Identification des machines +Tableau des modèles de pompes à chaleur
+2. Sélection de la pompe à chaleur +La puissance de la pompe à chaleur doit correspondre au volume et dimensions de la piscine : +3 +
\ No newline at end of file diff --git a/results/page_003.doctags_viz_page_3.debug.png b/results/page_003.doctags_viz_page_3.debug.png new file mode 100644 index 0000000..28bf3ba Binary files /dev/null and b/results/page_003.doctags_viz_page_3.debug.png differ diff --git a/results/page_003.doctags_viz_page_3.html b/results/page_003.doctags_viz_page_3.html new file mode 100644 index 0000000..615e59a --- /dev/null +++ b/results/page_003.doctags_viz_page_3.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 3 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ text +
+
+
+
+ section_header_level_1 +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
text
+
Position: (65, 187) - (1589, 327)
+ +
Généralités avant toute intervention sur une pompe à chaleur.
+ +
+ +
+
section_header_level_1
+
Position: (100, 347) - (1554, 463)
+ +
1. Identification des machines
+ +
+ +
+
section_header_level_1
+
Position: (100, 873) - (1554, 989)
+ +
2. Sélection de la pompe à chaleur
+ +
+ +
+
text
+
Position: (65, 1009) - (1589, 1125)
+ +
La puissance de la pompe à chaleur doit correspondre au volume et dimensions de la piscine :
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
3
+ +
+ +
+ + + + diff --git a/results/page_004.doctags.txt b/results/page_004.doctags.txt new file mode 100644 index 0000000..19d20a4 --- /dev/null +++ b/results/page_004.doctags.txt @@ -0,0 +1,9 @@ + +Livret d'aide au diagnostic de panne électrique +En général, on utilise la formule générique « T° d'eau / 2 = temps de filtration ». +Exemple : Température d'eau à 28°c : 28 / 2 = 14 h de filtration par jour. +En fin de saison la pompe à chaleur maintient la température de la piscine, et cette température d'eau à tendance à décroître avec la température extérieure jusqu'à ce que la pompe à chaleur arrive en limite de fonctionnement. +3. Raccordement hydraulique +La tuyauterie de raccordement de la PAC doit avoir un diamètre de 50 mm au minimum (63mm pour la Master XL) +4 + \ No newline at end of file diff --git a/results/page_004.doctags_viz_page_4.debug.png b/results/page_004.doctags_viz_page_4.debug.png new file mode 100644 index 0000000..07cebca Binary files /dev/null and b/results/page_004.doctags_viz_page_4.debug.png differ diff --git a/results/page_004.doctags_viz_page_4.html b/results/page_004.doctags_viz_page_4.html new file mode 100644 index 0000000..e507a29 --- /dev/null +++ b/results/page_004.doctags_viz_page_4.html @@ -0,0 +1,320 @@ + + + + + DocTags Zone Visualization - Page 4 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
text
+
Position: (65, 187) - (1589, 327)
+ +
En général, on utilise la formule générique « T° d'eau / 2 = temps de filtration ».
+ +
+ +
+
text
+
Position: (65, 347) - (1589, 440)
+ +
Exemple : Température d'eau à 28°c : 28 / 2 = 14 h de filtration par jour.
+ +
+ +
+
text
+
Position: (65, 470) - (1589, 750)
+ +
En fin de saison la pompe à chaleur maintient la température de la piscine, et cette température d'eau à tendance à décroître avec la température extérieure jusqu'à ce que la pompe à chaleur arrive en limite de fonctionnement.
+ +
+ +
+
section_header_level_1
+
Position: (100, 790) - (1554, 906)
+ +
3. Raccordement hydraulique
+ +
+ +
+
text
+
Position: (65, 926) - (1589, 1042)
+ +
La tuyauterie de raccordement de la PAC doit avoir un diamètre de 50 mm au minimum (63mm pour la Master XL)
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
4
+ +
+ +
+ + + + diff --git a/results/page_005.doctags.txt b/results/page_005.doctags.txt new file mode 100644 index 0000000..6a8860c --- /dev/null +++ b/results/page_005.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 5 +Paragraph 1 on page 5. +Paragraph 2 on page 5. +Paragraph 3 on page 5. +5 + \ No newline at end of file diff --git a/results/page_005.doctags_viz_page_5.debug.png b/results/page_005.doctags_viz_page_5.debug.png new file mode 100644 index 0000000..76885d6 Binary files /dev/null and b/results/page_005.doctags_viz_page_5.debug.png differ diff --git a/results/page_005.doctags_viz_page_5.html b/results/page_005.doctags_viz_page_5.html new file mode 100644 index 0000000..7290442 --- /dev/null +++ b/results/page_005.doctags_viz_page_5.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 5 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 5
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 5.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 5.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 5.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
5
+ +
+ +
+ + + + diff --git a/results/page_006.doctags.txt b/results/page_006.doctags.txt new file mode 100644 index 0000000..aaa2ea0 --- /dev/null +++ b/results/page_006.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 6 +Paragraph 1 on page 6. +Paragraph 2 on page 6. +Paragraph 3 on page 6. +6 + \ No newline at end of file diff --git a/results/page_006.doctags_viz_page_6.debug.png b/results/page_006.doctags_viz_page_6.debug.png new file mode 100644 index 0000000..59f6e16 Binary files /dev/null and b/results/page_006.doctags_viz_page_6.debug.png differ diff --git a/results/page_006.doctags_viz_page_6.html b/results/page_006.doctags_viz_page_6.html new file mode 100644 index 0000000..1b5a51c --- /dev/null +++ b/results/page_006.doctags_viz_page_6.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 6 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 6
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 6.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 6.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 6.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
6
+ +
+ +
+ + + + diff --git a/results/page_007.doctags.txt b/results/page_007.doctags.txt new file mode 100644 index 0000000..10ce5ae --- /dev/null +++ b/results/page_007.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 7 +Paragraph 1 on page 7. +Paragraph 2 on page 7. +Paragraph 3 on page 7. +7 + \ No newline at end of file diff --git a/results/page_007.doctags_viz_page_7.debug.png b/results/page_007.doctags_viz_page_7.debug.png new file mode 100644 index 0000000..03d5b0f Binary files /dev/null and b/results/page_007.doctags_viz_page_7.debug.png differ diff --git a/results/page_007.doctags_viz_page_7.html b/results/page_007.doctags_viz_page_7.html new file mode 100644 index 0000000..2bf6da7 --- /dev/null +++ b/results/page_007.doctags_viz_page_7.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 7 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 7
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 7.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 7.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 7.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
7
+ +
+ +
+ + + + diff --git a/results/page_008.doctags.txt b/results/page_008.doctags.txt new file mode 100644 index 0000000..8e6f1e0 --- /dev/null +++ b/results/page_008.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 8 +Paragraph 1 on page 8. +Paragraph 2 on page 8. +Paragraph 3 on page 8. +8 + \ No newline at end of file diff --git a/results/page_008.doctags_viz_page_8.debug.png b/results/page_008.doctags_viz_page_8.debug.png new file mode 100644 index 0000000..41eebbb Binary files /dev/null and b/results/page_008.doctags_viz_page_8.debug.png differ diff --git a/results/page_008.doctags_viz_page_8.html b/results/page_008.doctags_viz_page_8.html new file mode 100644 index 0000000..17b7a2a --- /dev/null +++ b/results/page_008.doctags_viz_page_8.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 8 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 8
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 8.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 8.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 8.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
8
+ +
+ +
+ + + + diff --git a/results/page_009.doctags.txt b/results/page_009.doctags.txt new file mode 100644 index 0000000..4075d14 --- /dev/null +++ b/results/page_009.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 9 +Paragraph 1 on page 9. +Paragraph 2 on page 9. +Paragraph 3 on page 9. +9 + \ No newline at end of file diff --git a/results/page_009.doctags_viz_page_9.debug.png b/results/page_009.doctags_viz_page_9.debug.png new file mode 100644 index 0000000..019998c Binary files /dev/null and b/results/page_009.doctags_viz_page_9.debug.png differ diff --git a/results/page_009.doctags_viz_page_9.html b/results/page_009.doctags_viz_page_9.html new file mode 100644 index 0000000..3095a2e --- /dev/null +++ b/results/page_009.doctags_viz_page_9.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 9 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 9
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 9.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 9.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 9.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
9
+ +
+ +
+ + + + diff --git a/results/page_010.doctags.txt b/results/page_010.doctags.txt new file mode 100644 index 0000000..a5f486f --- /dev/null +++ b/results/page_010.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 10 +Paragraph 1 on page 10. +Paragraph 2 on page 10. +Paragraph 3 on page 10. +10 + \ No newline at end of file diff --git a/results/page_010.doctags_viz_page_10.debug.png b/results/page_010.doctags_viz_page_10.debug.png new file mode 100644 index 0000000..c6ec136 Binary files /dev/null and b/results/page_010.doctags_viz_page_10.debug.png differ diff --git a/results/page_010.doctags_viz_page_10.html b/results/page_010.doctags_viz_page_10.html new file mode 100644 index 0000000..82dfae2 --- /dev/null +++ b/results/page_010.doctags_viz_page_10.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 10 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 10
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 10.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 10.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 10.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
10
+ +
+ +
+ + + + diff --git a/results/page_011.doctags.txt b/results/page_011.doctags.txt new file mode 100644 index 0000000..c42aebf --- /dev/null +++ b/results/page_011.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 11 +Paragraph 1 on page 11. +Paragraph 2 on page 11. +Paragraph 3 on page 11. +11 + \ No newline at end of file diff --git a/results/page_011.doctags_viz_page_11.debug.png b/results/page_011.doctags_viz_page_11.debug.png new file mode 100644 index 0000000..c89ceaa Binary files /dev/null and b/results/page_011.doctags_viz_page_11.debug.png differ diff --git a/results/page_011.doctags_viz_page_11.html b/results/page_011.doctags_viz_page_11.html new file mode 100644 index 0000000..8eb1e99 --- /dev/null +++ b/results/page_011.doctags_viz_page_11.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 11 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 11
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 11.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 11.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 11.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
11
+ +
+ +
+ + + + diff --git a/results/page_012.doctags.txt b/results/page_012.doctags.txt new file mode 100644 index 0000000..5161aa6 --- /dev/null +++ b/results/page_012.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 12 +Paragraph 1 on page 12. +Paragraph 2 on page 12. +Paragraph 3 on page 12. +12 + \ No newline at end of file diff --git a/results/page_012.doctags_viz_page_12.debug.png b/results/page_012.doctags_viz_page_12.debug.png new file mode 100644 index 0000000..31c4266 Binary files /dev/null and b/results/page_012.doctags_viz_page_12.debug.png differ diff --git a/results/page_012.doctags_viz_page_12.html b/results/page_012.doctags_viz_page_12.html new file mode 100644 index 0000000..d3d3b91 --- /dev/null +++ b/results/page_012.doctags_viz_page_12.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 12 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 12
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 12.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 12.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 12.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
12
+ +
+ +
+ + + + diff --git a/results/page_013.doctags.txt b/results/page_013.doctags.txt new file mode 100644 index 0000000..6038487 --- /dev/null +++ b/results/page_013.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 13 +Paragraph 1 on page 13. +Paragraph 2 on page 13. +Paragraph 3 on page 13. +13 + \ No newline at end of file diff --git a/results/page_013.doctags_viz_page_13.debug.png b/results/page_013.doctags_viz_page_13.debug.png new file mode 100644 index 0000000..0028af2 Binary files /dev/null and b/results/page_013.doctags_viz_page_13.debug.png differ diff --git a/results/page_013.doctags_viz_page_13.html b/results/page_013.doctags_viz_page_13.html new file mode 100644 index 0000000..4151f3c --- /dev/null +++ b/results/page_013.doctags_viz_page_13.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 13 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 13
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 13.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 13.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 13.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
13
+ +
+ +
+ + + + diff --git a/results/page_014.doctags.txt b/results/page_014.doctags.txt new file mode 100644 index 0000000..6cae44b --- /dev/null +++ b/results/page_014.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 14 +Paragraph 1 on page 14. +Paragraph 2 on page 14. +Paragraph 3 on page 14. +14 + \ No newline at end of file diff --git a/results/page_014.doctags_viz_page_14.debug.png b/results/page_014.doctags_viz_page_14.debug.png new file mode 100644 index 0000000..7371d85 Binary files /dev/null and b/results/page_014.doctags_viz_page_14.debug.png differ diff --git a/results/page_014.doctags_viz_page_14.html b/results/page_014.doctags_viz_page_14.html new file mode 100644 index 0000000..ecde979 --- /dev/null +++ b/results/page_014.doctags_viz_page_14.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 14 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 14
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 14.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 14.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 14.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
14
+ +
+ +
+ + + + diff --git a/results/page_015.doctags.txt b/results/page_015.doctags.txt new file mode 100644 index 0000000..f488387 --- /dev/null +++ b/results/page_015.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 15 +Paragraph 1 on page 15. +Paragraph 2 on page 15. +Paragraph 3 on page 15. +15 + \ No newline at end of file diff --git a/results/page_015.doctags_viz_page_15.debug.png b/results/page_015.doctags_viz_page_15.debug.png new file mode 100644 index 0000000..804816c Binary files /dev/null and b/results/page_015.doctags_viz_page_15.debug.png differ diff --git a/results/page_015.doctags_viz_page_15.html b/results/page_015.doctags_viz_page_15.html new file mode 100644 index 0000000..4c2e22a --- /dev/null +++ b/results/page_015.doctags_viz_page_15.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 15 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 15
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 15.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 15.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 15.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
15
+ +
+ +
+ + + + diff --git a/results/page_016.doctags.txt b/results/page_016.doctags.txt new file mode 100644 index 0000000..aef9db4 --- /dev/null +++ b/results/page_016.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 16 +Paragraph 1 on page 16. +Paragraph 2 on page 16. +Paragraph 3 on page 16. +16 + \ No newline at end of file diff --git a/results/page_016.doctags_viz_page_16.debug.png b/results/page_016.doctags_viz_page_16.debug.png new file mode 100644 index 0000000..3992b56 Binary files /dev/null and b/results/page_016.doctags_viz_page_16.debug.png differ diff --git a/results/page_016.doctags_viz_page_16.html b/results/page_016.doctags_viz_page_16.html new file mode 100644 index 0000000..d2e79a4 --- /dev/null +++ b/results/page_016.doctags_viz_page_16.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 16 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ text +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 16
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 16.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 16.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 16.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
16
+ +
+ +
+ + + + diff --git a/results/page_017.doctags.txt b/results/page_017.doctags.txt new file mode 100644 index 0000000..daf7305 --- /dev/null +++ b/results/page_017.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 17 +Paragraph 1 on page 17. +Paragraph 2 on page 17. +Paragraph 3 on page 17. +17 + \ No newline at end of file diff --git a/results/page_017.doctags_viz_page_17.debug.png b/results/page_017.doctags_viz_page_17.debug.png new file mode 100644 index 0000000..0e21907 Binary files /dev/null and b/results/page_017.doctags_viz_page_17.debug.png differ diff --git a/results/page_017.doctags_viz_page_17.html b/results/page_017.doctags_viz_page_17.html new file mode 100644 index 0000000..1bc06db --- /dev/null +++ b/results/page_017.doctags_viz_page_17.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 17 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 17
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 17.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 17.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 17.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
17
+ +
+ +
+ + + + diff --git a/results/page_018.doctags.txt b/results/page_018.doctags.txt new file mode 100644 index 0000000..a6b04ab --- /dev/null +++ b/results/page_018.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 18 +Paragraph 1 on page 18. +Paragraph 2 on page 18. +Paragraph 3 on page 18. +18 + \ No newline at end of file diff --git a/results/page_018.doctags_viz_page_18.debug.png b/results/page_018.doctags_viz_page_18.debug.png new file mode 100644 index 0000000..390c51a Binary files /dev/null and b/results/page_018.doctags_viz_page_18.debug.png differ diff --git a/results/page_018.doctags_viz_page_18.html b/results/page_018.doctags_viz_page_18.html new file mode 100644 index 0000000..c81ef68 --- /dev/null +++ b/results/page_018.doctags_viz_page_18.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 18 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ text +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 18
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 18.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 18.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 18.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
18
+ +
+ +
+ + + + diff --git a/results/page_019.doctags.txt b/results/page_019.doctags.txt new file mode 100644 index 0000000..a2abb3f --- /dev/null +++ b/results/page_019.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 19 +Paragraph 1 on page 19. +Paragraph 2 on page 19. +Paragraph 3 on page 19. +19 + \ No newline at end of file diff --git a/results/page_019.doctags_viz_page_19.debug.png b/results/page_019.doctags_viz_page_19.debug.png new file mode 100644 index 0000000..ec83c98 Binary files /dev/null and b/results/page_019.doctags_viz_page_19.debug.png differ diff --git a/results/page_019.doctags_viz_page_19.html b/results/page_019.doctags_viz_page_19.html new file mode 100644 index 0000000..ccf65da --- /dev/null +++ b/results/page_019.doctags_viz_page_19.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 19 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 19
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 19.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 19.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 19.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
19
+ +
+ +
+ + + + diff --git a/results/page_020.doctags.txt b/results/page_020.doctags.txt new file mode 100644 index 0000000..5d4da23 --- /dev/null +++ b/results/page_020.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 20 +Paragraph 1 on page 20. +Paragraph 2 on page 20. +Paragraph 3 on page 20. +20 + \ No newline at end of file diff --git a/results/page_020.doctags_viz_page_20.debug.png b/results/page_020.doctags_viz_page_20.debug.png new file mode 100644 index 0000000..c4eca93 Binary files /dev/null and b/results/page_020.doctags_viz_page_20.debug.png differ diff --git a/results/page_020.doctags_viz_page_20.html b/results/page_020.doctags_viz_page_20.html new file mode 100644 index 0000000..bb781f1 --- /dev/null +++ b/results/page_020.doctags_viz_page_20.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 20 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ text +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 20
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 20.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 20.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 20.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
20
+ +
+ +
+ + + + diff --git a/results/page_021.doctags.txt b/results/page_021.doctags.txt new file mode 100644 index 0000000..eec54cd --- /dev/null +++ b/results/page_021.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 21 +Paragraph 1 on page 21. +Paragraph 2 on page 21. +Paragraph 3 on page 21. +21 + \ No newline at end of file diff --git a/results/page_021.doctags_viz_page_21.debug.png b/results/page_021.doctags_viz_page_21.debug.png new file mode 100644 index 0000000..02cd2a9 Binary files /dev/null and b/results/page_021.doctags_viz_page_21.debug.png differ diff --git a/results/page_021.doctags_viz_page_21.html b/results/page_021.doctags_viz_page_21.html new file mode 100644 index 0000000..0dd415e --- /dev/null +++ b/results/page_021.doctags_viz_page_21.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 21 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 21
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 21.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 21.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 21.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
21
+ +
+ +
+ + + + diff --git a/results/page_022.doctags.txt b/results/page_022.doctags.txt new file mode 100644 index 0000000..2fe760b --- /dev/null +++ b/results/page_022.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 22 +Paragraph 1 on page 22. +Paragraph 2 on page 22. +Paragraph 3 on page 22. +22 + \ No newline at end of file diff --git a/results/page_022.doctags_viz_page_22.debug.png b/results/page_022.doctags_viz_page_22.debug.png new file mode 100644 index 0000000..2f8e65b Binary files /dev/null and b/results/page_022.doctags_viz_page_22.debug.png differ diff --git a/results/page_022.doctags_viz_page_22.html b/results/page_022.doctags_viz_page_22.html new file mode 100644 index 0000000..99d2c00 --- /dev/null +++ b/results/page_022.doctags_viz_page_22.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 22 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 22
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 22.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 22.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 22.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
22
+ +
+ +
+ + + + diff --git a/results/page_023.doctags.txt b/results/page_023.doctags.txt new file mode 100644 index 0000000..25883fa --- /dev/null +++ b/results/page_023.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 23 +Paragraph 1 on page 23. +Paragraph 2 on page 23. +Paragraph 3 on page 23. +23 + \ No newline at end of file diff --git a/results/page_023.doctags_viz_page_23.debug.png b/results/page_023.doctags_viz_page_23.debug.png new file mode 100644 index 0000000..1d3daee Binary files /dev/null and b/results/page_023.doctags_viz_page_23.debug.png differ diff --git a/results/page_023.doctags_viz_page_23.html b/results/page_023.doctags_viz_page_23.html new file mode 100644 index 0000000..acf7c1a --- /dev/null +++ b/results/page_023.doctags_viz_page_23.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 23 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 23
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 23.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 23.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 23.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
23
+ +
+ +
+ + + + diff --git a/results/page_024.doctags.txt b/results/page_024.doctags.txt new file mode 100644 index 0000000..4c6a6f4 --- /dev/null +++ b/results/page_024.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 24 +Paragraph 1 on page 24. +Paragraph 2 on page 24. +Paragraph 3 on page 24. +24 + \ No newline at end of file diff --git a/results/page_024.doctags_viz_page_24.debug.png b/results/page_024.doctags_viz_page_24.debug.png new file mode 100644 index 0000000..9dbb8f6 Binary files /dev/null and b/results/page_024.doctags_viz_page_24.debug.png differ diff --git a/results/page_024.doctags_viz_page_24.html b/results/page_024.doctags_viz_page_24.html new file mode 100644 index 0000000..5fb3869 --- /dev/null +++ b/results/page_024.doctags_viz_page_24.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 24 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 24
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 24.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 24.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 24.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
24
+ +
+ +
+ + + + diff --git a/results/page_025.doctags.txt b/results/page_025.doctags.txt new file mode 100644 index 0000000..2491369 --- /dev/null +++ b/results/page_025.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 25 +Paragraph 1 on page 25. +Paragraph 2 on page 25. +Paragraph 3 on page 25. +25 + \ No newline at end of file diff --git a/results/page_025.doctags_viz_page_25.debug.png b/results/page_025.doctags_viz_page_25.debug.png new file mode 100644 index 0000000..4ca5163 Binary files /dev/null and b/results/page_025.doctags_viz_page_25.debug.png differ diff --git a/results/page_025.doctags_viz_page_25.html b/results/page_025.doctags_viz_page_25.html new file mode 100644 index 0000000..38f623c --- /dev/null +++ b/results/page_025.doctags_viz_page_25.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 25 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 25
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 25.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 25.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 25.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
25
+ +
+ +
+ + + + diff --git a/results/page_026.doctags.txt b/results/page_026.doctags.txt new file mode 100644 index 0000000..2e04145 --- /dev/null +++ b/results/page_026.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 26 +Paragraph 1 on page 26. +Paragraph 2 on page 26. +Paragraph 3 on page 26. +26 + \ No newline at end of file diff --git a/results/page_026.doctags_viz_page_26.debug.png b/results/page_026.doctags_viz_page_26.debug.png new file mode 100644 index 0000000..c542b84 Binary files /dev/null and b/results/page_026.doctags_viz_page_26.debug.png differ diff --git a/results/page_026.doctags_viz_page_26.html b/results/page_026.doctags_viz_page_26.html new file mode 100644 index 0000000..5dda848 --- /dev/null +++ b/results/page_026.doctags_viz_page_26.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 26 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 26
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 26.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 26.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 26.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
26
+ +
+ +
+ + + + diff --git a/results/page_027.doctags.txt b/results/page_027.doctags.txt new file mode 100644 index 0000000..31f3132 --- /dev/null +++ b/results/page_027.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 27 +Paragraph 1 on page 27. +Paragraph 2 on page 27. +Paragraph 3 on page 27. +27 + \ No newline at end of file diff --git a/results/page_027.doctags_viz_page_27.debug.png b/results/page_027.doctags_viz_page_27.debug.png new file mode 100644 index 0000000..ddc8601 Binary files /dev/null and b/results/page_027.doctags_viz_page_27.debug.png differ diff --git a/results/page_027.doctags_viz_page_27.html b/results/page_027.doctags_viz_page_27.html new file mode 100644 index 0000000..7976903 --- /dev/null +++ b/results/page_027.doctags_viz_page_27.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 27 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 27
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 27.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 27.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 27.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
27
+ +
+ +
+ + + + diff --git a/results/page_028.doctags.txt b/results/page_028.doctags.txt new file mode 100644 index 0000000..31ffeec --- /dev/null +++ b/results/page_028.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 28 +Paragraph 1 on page 28. +Paragraph 2 on page 28. +Paragraph 3 on page 28. +28 + \ No newline at end of file diff --git a/results/page_028.doctags_viz_page_28.debug.png b/results/page_028.doctags_viz_page_28.debug.png new file mode 100644 index 0000000..f673fa8 Binary files /dev/null and b/results/page_028.doctags_viz_page_28.debug.png differ diff --git a/results/page_028.doctags_viz_page_28.html b/results/page_028.doctags_viz_page_28.html new file mode 100644 index 0000000..927aab0 --- /dev/null +++ b/results/page_028.doctags_viz_page_28.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 28 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 28
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 28.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 28.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 28.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
28
+ +
+ +
+ + + + diff --git a/results/page_029.doctags.txt b/results/page_029.doctags.txt new file mode 100644 index 0000000..48286b1 --- /dev/null +++ b/results/page_029.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 29 +Paragraph 1 on page 29. +Paragraph 2 on page 29. +Paragraph 3 on page 29. +29 + \ No newline at end of file diff --git a/results/page_029.doctags_viz_page_29.debug.png b/results/page_029.doctags_viz_page_29.debug.png new file mode 100644 index 0000000..586e03c Binary files /dev/null and b/results/page_029.doctags_viz_page_29.debug.png differ diff --git a/results/page_029.doctags_viz_page_29.html b/results/page_029.doctags_viz_page_29.html new file mode 100644 index 0000000..8cac1d2 --- /dev/null +++ b/results/page_029.doctags_viz_page_29.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 29 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 29
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 29.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 29.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 29.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
29
+ +
+ +
+ + + + diff --git a/results/page_030.doctags.txt b/results/page_030.doctags.txt new file mode 100644 index 0000000..c435574 --- /dev/null +++ b/results/page_030.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 30 +Paragraph 1 on page 30. +Paragraph 2 on page 30. +Paragraph 3 on page 30. +30 + \ No newline at end of file diff --git a/results/page_030.doctags_viz_page_30.debug.png b/results/page_030.doctags_viz_page_30.debug.png new file mode 100644 index 0000000..2643b81 Binary files /dev/null and b/results/page_030.doctags_viz_page_30.debug.png differ diff --git a/results/page_030.doctags_viz_page_30.html b/results/page_030.doctags_viz_page_30.html new file mode 100644 index 0000000..2aa4ef9 --- /dev/null +++ b/results/page_030.doctags_viz_page_30.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 30 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 30
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 30.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 30.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 30.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
30
+ +
+ +
+ + + + diff --git a/results/page_031.doctags.txt b/results/page_031.doctags.txt new file mode 100644 index 0000000..1d7fd58 --- /dev/null +++ b/results/page_031.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 31 +Paragraph 1 on page 31. +Paragraph 2 on page 31. +Paragraph 3 on page 31. +31 + \ No newline at end of file diff --git a/results/page_031.doctags_viz_page_31.debug.png b/results/page_031.doctags_viz_page_31.debug.png new file mode 100644 index 0000000..01f174c Binary files /dev/null and b/results/page_031.doctags_viz_page_31.debug.png differ diff --git a/results/page_031.doctags_viz_page_31.html b/results/page_031.doctags_viz_page_31.html new file mode 100644 index 0000000..e1f4ce8 --- /dev/null +++ b/results/page_031.doctags_viz_page_31.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 31 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 31
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 31.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 31.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 31.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
31
+ +
+ +
+ + + + diff --git a/results/page_032.doctags.txt b/results/page_032.doctags.txt new file mode 100644 index 0000000..bc827ed --- /dev/null +++ b/results/page_032.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 32 +Paragraph 1 on page 32. +Paragraph 2 on page 32. +Paragraph 3 on page 32. +32 + \ No newline at end of file diff --git a/results/page_032.doctags_viz_page_32.debug.png b/results/page_032.doctags_viz_page_32.debug.png new file mode 100644 index 0000000..d6372cd Binary files /dev/null and b/results/page_032.doctags_viz_page_32.debug.png differ diff --git a/results/page_032.doctags_viz_page_32.html b/results/page_032.doctags_viz_page_32.html new file mode 100644 index 0000000..365698a --- /dev/null +++ b/results/page_032.doctags_viz_page_32.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 32 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 32
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 32.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 32.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 32.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
32
+ +
+ +
+ + + + diff --git a/results/page_033.doctags.txt b/results/page_033.doctags.txt new file mode 100644 index 0000000..a66d81a --- /dev/null +++ b/results/page_033.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 33 +Paragraph 1 on page 33. +Paragraph 2 on page 33. +Paragraph 3 on page 33. +33 + \ No newline at end of file diff --git a/results/page_033.doctags_viz_page_33.debug.png b/results/page_033.doctags_viz_page_33.debug.png new file mode 100644 index 0000000..953516b Binary files /dev/null and b/results/page_033.doctags_viz_page_33.debug.png differ diff --git a/results/page_033.doctags_viz_page_33.html b/results/page_033.doctags_viz_page_33.html new file mode 100644 index 0000000..95e30d6 --- /dev/null +++ b/results/page_033.doctags_viz_page_33.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 33 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 33
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 33.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 33.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 33.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
33
+ +
+ +
+ + + + diff --git a/results/page_034.doctags.txt b/results/page_034.doctags.txt new file mode 100644 index 0000000..e4918f0 --- /dev/null +++ b/results/page_034.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 34 +Paragraph 1 on page 34. +Paragraph 2 on page 34. +Paragraph 3 on page 34. +34 + \ No newline at end of file diff --git a/results/page_034.doctags_viz_page_34.debug.png b/results/page_034.doctags_viz_page_34.debug.png new file mode 100644 index 0000000..dd5686d Binary files /dev/null and b/results/page_034.doctags_viz_page_34.debug.png differ diff --git a/results/page_034.doctags_viz_page_34.html b/results/page_034.doctags_viz_page_34.html new file mode 100644 index 0000000..ebed6af --- /dev/null +++ b/results/page_034.doctags_viz_page_34.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 34 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 34
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 34.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 34.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 34.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
34
+ +
+ +
+ + + + diff --git a/results/page_035.doctags.txt b/results/page_035.doctags.txt new file mode 100644 index 0000000..d529a8e --- /dev/null +++ b/results/page_035.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 35 +Paragraph 1 on page 35. +Paragraph 2 on page 35. +Paragraph 3 on page 35. +35 + \ No newline at end of file diff --git a/results/page_035.doctags_viz_page_35.debug.png b/results/page_035.doctags_viz_page_35.debug.png new file mode 100644 index 0000000..968414f Binary files /dev/null and b/results/page_035.doctags_viz_page_35.debug.png differ diff --git a/results/page_035.doctags_viz_page_35.html b/results/page_035.doctags_viz_page_35.html new file mode 100644 index 0000000..fe8c158 --- /dev/null +++ b/results/page_035.doctags_viz_page_35.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 35 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 35
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 35.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 35.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 35.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
35
+ +
+ +
+ + + + diff --git a/results/page_036.doctags.txt b/results/page_036.doctags.txt new file mode 100644 index 0000000..74e3a8c --- /dev/null +++ b/results/page_036.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 36 +Paragraph 1 on page 36. +Paragraph 2 on page 36. +Paragraph 3 on page 36. +36 + \ No newline at end of file diff --git a/results/page_036.doctags_viz_page_36.debug.png b/results/page_036.doctags_viz_page_36.debug.png new file mode 100644 index 0000000..75433a9 Binary files /dev/null and b/results/page_036.doctags_viz_page_36.debug.png differ diff --git a/results/page_036.doctags_viz_page_36.html b/results/page_036.doctags_viz_page_36.html new file mode 100644 index 0000000..4686e50 --- /dev/null +++ b/results/page_036.doctags_viz_page_36.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 36 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 36
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 36.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 36.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 36.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
36
+ +
+ +
+ + + + diff --git a/results/page_037.doctags.txt b/results/page_037.doctags.txt new file mode 100644 index 0000000..43ecbf5 --- /dev/null +++ b/results/page_037.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 37 +Paragraph 1 on page 37. +Paragraph 2 on page 37. +Paragraph 3 on page 37. +37 + \ No newline at end of file diff --git a/results/page_037.doctags_viz_page_37.debug.png b/results/page_037.doctags_viz_page_37.debug.png new file mode 100644 index 0000000..b3ac943 Binary files /dev/null and b/results/page_037.doctags_viz_page_37.debug.png differ diff --git a/results/page_037.doctags_viz_page_37.html b/results/page_037.doctags_viz_page_37.html new file mode 100644 index 0000000..60cbc7e --- /dev/null +++ b/results/page_037.doctags_viz_page_37.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 37 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 37
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 37.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 37.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 37.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
37
+ +
+ +
+ + + + diff --git a/results/page_038.doctags.txt b/results/page_038.doctags.txt new file mode 100644 index 0000000..86f65ef --- /dev/null +++ b/results/page_038.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 38 +Paragraph 1 on page 38. +Paragraph 2 on page 38. +Paragraph 3 on page 38. +38 + \ No newline at end of file diff --git a/results/page_038.doctags_viz_page_38.debug.png b/results/page_038.doctags_viz_page_38.debug.png new file mode 100644 index 0000000..0d8dab3 Binary files /dev/null and b/results/page_038.doctags_viz_page_38.debug.png differ diff --git a/results/page_038.doctags_viz_page_38.html b/results/page_038.doctags_viz_page_38.html new file mode 100644 index 0000000..8abd2a3 --- /dev/null +++ b/results/page_038.doctags_viz_page_38.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 38 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 38
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 38.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 38.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 38.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
38
+ +
+ +
+ + + + diff --git a/results/page_039.doctags.txt b/results/page_039.doctags.txt new file mode 100644 index 0000000..99cb0ad --- /dev/null +++ b/results/page_039.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 39 +Paragraph 1 on page 39. +Paragraph 2 on page 39. +Paragraph 3 on page 39. +39 + \ No newline at end of file diff --git a/results/page_039.doctags_viz_page_39.debug.png b/results/page_039.doctags_viz_page_39.debug.png new file mode 100644 index 0000000..afd8cda Binary files /dev/null and b/results/page_039.doctags_viz_page_39.debug.png differ diff --git a/results/page_039.doctags_viz_page_39.html b/results/page_039.doctags_viz_page_39.html new file mode 100644 index 0000000..93a45f3 --- /dev/null +++ b/results/page_039.doctags_viz_page_39.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 39 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 39
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 39.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 39.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 39.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
39
+ +
+ +
+ + + + diff --git a/results/page_040.doctags.txt b/results/page_040.doctags.txt new file mode 100644 index 0000000..e016c3b --- /dev/null +++ b/results/page_040.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 40 +Paragraph 1 on page 40. +Paragraph 2 on page 40. +Paragraph 3 on page 40. +40 + \ No newline at end of file diff --git a/results/page_040.doctags_viz_page_40.debug.png b/results/page_040.doctags_viz_page_40.debug.png new file mode 100644 index 0000000..82dee6a Binary files /dev/null and b/results/page_040.doctags_viz_page_40.debug.png differ diff --git a/results/page_040.doctags_viz_page_40.html b/results/page_040.doctags_viz_page_40.html new file mode 100644 index 0000000..c5e8ae5 --- /dev/null +++ b/results/page_040.doctags_viz_page_40.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 40 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 40
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 40.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 40.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 40.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
40
+ +
+ +
+ + + + diff --git a/results/page_041.doctags.txt b/results/page_041.doctags.txt new file mode 100644 index 0000000..9b60826 --- /dev/null +++ b/results/page_041.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 41 +Paragraph 1 on page 41. +Paragraph 2 on page 41. +Paragraph 3 on page 41. +41 + \ No newline at end of file diff --git a/results/page_041.doctags_viz_page_41.debug.png b/results/page_041.doctags_viz_page_41.debug.png new file mode 100644 index 0000000..6895256 Binary files /dev/null and b/results/page_041.doctags_viz_page_41.debug.png differ diff --git a/results/page_041.doctags_viz_page_41.html b/results/page_041.doctags_viz_page_41.html new file mode 100644 index 0000000..a88dc11 --- /dev/null +++ b/results/page_041.doctags_viz_page_41.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 41 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 41
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 41.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 41.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 41.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
41
+ +
+ +
+ + + + diff --git a/results/page_042.doctags.txt b/results/page_042.doctags.txt new file mode 100644 index 0000000..9062332 --- /dev/null +++ b/results/page_042.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 42 +Paragraph 1 on page 42. +Paragraph 2 on page 42. +Paragraph 3 on page 42. +42 + \ No newline at end of file diff --git a/results/page_042.doctags_viz_page_42.debug.png b/results/page_042.doctags_viz_page_42.debug.png new file mode 100644 index 0000000..611495b Binary files /dev/null and b/results/page_042.doctags_viz_page_42.debug.png differ diff --git a/results/page_042.doctags_viz_page_42.html b/results/page_042.doctags_viz_page_42.html new file mode 100644 index 0000000..b7a34d6 --- /dev/null +++ b/results/page_042.doctags_viz_page_42.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 42 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 42
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 42.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 42.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 42.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
42
+ +
+ +
+ + + + diff --git a/results/page_043.doctags.txt b/results/page_043.doctags.txt new file mode 100644 index 0000000..b14a2d1 --- /dev/null +++ b/results/page_043.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 43 +Paragraph 1 on page 43. +Paragraph 2 on page 43. +Paragraph 3 on page 43. +43 + \ No newline at end of file diff --git a/results/page_043.doctags_viz_page_43.debug.png b/results/page_043.doctags_viz_page_43.debug.png new file mode 100644 index 0000000..8bcdb3d Binary files /dev/null and b/results/page_043.doctags_viz_page_43.debug.png differ diff --git a/results/page_043.doctags_viz_page_43.html b/results/page_043.doctags_viz_page_43.html new file mode 100644 index 0000000..be53ad4 --- /dev/null +++ b/results/page_043.doctags_viz_page_43.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 43 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 43
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 43.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 43.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 43.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
43
+ +
+ +
+ + + + diff --git a/results/page_044.doctags.txt b/results/page_044.doctags.txt new file mode 100644 index 0000000..5c1f53c --- /dev/null +++ b/results/page_044.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 44 +Paragraph 1 on page 44. +Paragraph 2 on page 44. +Paragraph 3 on page 44. +44 + \ No newline at end of file diff --git a/results/page_044.doctags_viz_page_44.debug.png b/results/page_044.doctags_viz_page_44.debug.png new file mode 100644 index 0000000..5c8e3be Binary files /dev/null and b/results/page_044.doctags_viz_page_44.debug.png differ diff --git a/results/page_044.doctags_viz_page_44.html b/results/page_044.doctags_viz_page_44.html new file mode 100644 index 0000000..acc1cb9 --- /dev/null +++ b/results/page_044.doctags_viz_page_44.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 44 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 44
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 44.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 44.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 44.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
44
+ +
+ +
+ + + + diff --git a/results/page_045.doctags.txt b/results/page_045.doctags.txt new file mode 100644 index 0000000..524026c --- /dev/null +++ b/results/page_045.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 45 +Paragraph 1 on page 45. +Paragraph 2 on page 45. +Paragraph 3 on page 45. +45 + \ No newline at end of file diff --git a/results/page_045.doctags_viz_page_45.debug.png b/results/page_045.doctags_viz_page_45.debug.png new file mode 100644 index 0000000..b44b424 Binary files /dev/null and b/results/page_045.doctags_viz_page_45.debug.png differ diff --git a/results/page_045.doctags_viz_page_45.html b/results/page_045.doctags_viz_page_45.html new file mode 100644 index 0000000..fb2e5b8 --- /dev/null +++ b/results/page_045.doctags_viz_page_45.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 45 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ page_header +
+
+
+ text +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 45
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 45.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 45.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 45.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
45
+ +
+ +
+ + + + diff --git a/results/page_046.doctags.txt b/results/page_046.doctags.txt new file mode 100644 index 0000000..1f2f647 --- /dev/null +++ b/results/page_046.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 46 +Paragraph 1 on page 46. +Paragraph 2 on page 46. +Paragraph 3 on page 46. +46 + \ No newline at end of file diff --git a/results/page_046.doctags_viz_page_46.debug.png b/results/page_046.doctags_viz_page_46.debug.png new file mode 100644 index 0000000..cdc9374 Binary files /dev/null and b/results/page_046.doctags_viz_page_46.debug.png differ diff --git a/results/page_046.doctags_viz_page_46.html b/results/page_046.doctags_viz_page_46.html new file mode 100644 index 0000000..5e1e152 --- /dev/null +++ b/results/page_046.doctags_viz_page_46.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 46 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 46
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 46.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 46.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 46.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
46
+ +
+ +
+ + + + diff --git a/results/page_047.doctags.txt b/results/page_047.doctags.txt new file mode 100644 index 0000000..a72dbbd --- /dev/null +++ b/results/page_047.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 47 +Paragraph 1 on page 47. +Paragraph 2 on page 47. +Paragraph 3 on page 47. +47 + \ No newline at end of file diff --git a/results/page_047.doctags_viz_page_47.debug.png b/results/page_047.doctags_viz_page_47.debug.png new file mode 100644 index 0000000..a9221dd Binary files /dev/null and b/results/page_047.doctags_viz_page_47.debug.png differ diff --git a/results/page_047.doctags_viz_page_47.html b/results/page_047.doctags_viz_page_47.html new file mode 100644 index 0000000..b0e626a --- /dev/null +++ b/results/page_047.doctags_viz_page_47.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 47 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_footer +
+
+
+ page_header +
+
+
+ text +
+
+
+ section_header_level_1 +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 47
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 47.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 47.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 47.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
47
+ +
+ +
+ + + + diff --git a/results/page_048.doctags.txt b/results/page_048.doctags.txt new file mode 100644 index 0000000..6c3b6a6 --- /dev/null +++ b/results/page_048.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 48 +Paragraph 1 on page 48. +Paragraph 2 on page 48. +Paragraph 3 on page 48. +48 + \ No newline at end of file diff --git a/results/page_048.doctags_viz_page_48.debug.png b/results/page_048.doctags_viz_page_48.debug.png new file mode 100644 index 0000000..842daee Binary files /dev/null and b/results/page_048.doctags_viz_page_48.debug.png differ diff --git a/results/page_048.doctags_viz_page_48.html b/results/page_048.doctags_viz_page_48.html new file mode 100644 index 0000000..f299fbb --- /dev/null +++ b/results/page_048.doctags_viz_page_48.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 48 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ page_header +
+
+
+ section_header_level_1 +
+
+
+ page_footer +
+
+
+ text +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 48
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 48.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 48.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 48.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
48
+ +
+ +
+ + + + diff --git a/results/page_049.doctags.txt b/results/page_049.doctags.txt new file mode 100644 index 0000000..837cf66 --- /dev/null +++ b/results/page_049.doctags.txt @@ -0,0 +1,8 @@ + +Livret d'aide au diagnostic de panne électrique +Section 49 +Paragraph 1 on page 49. +Paragraph 2 on page 49. +Paragraph 3 on page 49. +49 + \ No newline at end of file diff --git a/results/page_049.doctags_viz_page_49.debug.png b/results/page_049.doctags_viz_page_49.debug.png new file mode 100644 index 0000000..29d9555 Binary files /dev/null and b/results/page_049.doctags_viz_page_49.debug.png differ diff --git a/results/page_049.doctags_viz_page_49.html b/results/page_049.doctags_viz_page_49.html new file mode 100644 index 0000000..6f13abb --- /dev/null +++ b/results/page_049.doctags_viz_page_49.html @@ -0,0 +1,307 @@ + + + + + DocTags Zone Visualization - Page 49 + + + +
+

DocTags Zone Visualization - document

+
+
+ + + + +
+
+
+ section_header_level_1 +
+
+
+ text +
+
+
+ page_header +
+
+
+ page_footer +
+
+
+ + +
+
+ +
+ + +
+
+ page_header +
+
+
+
+ section_header_level_1 +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ text +
+
+
+
+ page_footer +
+
+
+ +
+

Detected Zones:

+ +
+
page_header
+
Position: (65, 116) - (1589, 256)
+ +
Livret d'aide au diagnostic de panne électrique
+ +
+ +
+
section_header_level_1
+
Position: (100, 350) - (1554, 490)
+ +
Section 49
+ +
+ +
+
text
+
Position: (65, 490) - (1589, 630)
+ +
Paragraph 1 on page 49.
+ +
+ +
+
text
+
Position: (65, 570) - (1589, 710)
+ +
Paragraph 2 on page 49.
+ +
+ +
+
text
+
Position: (65, 650) - (1589, 790)
+ +
Paragraph 3 on page 49.
+ +
+ +
+
page_footer
+
Position: (817, 2223) - (837, 2293)
+ +
49
+ +
+ +
+ + + + diff --git a/visualizer.py b/visualizer.py index 57526ce..90221c8 100644 --- a/visualizer.py +++ b/visualizer.py @@ -487,7 +487,10 @@ def create_debug_image(image, zones, page_num, output_path): return debug_img -def process_page(pdf_path, page_num, doctags_path, output_base, dpi=200, show=False, scale=1.0, scale_x=None, scale_y=None, adjust=False): +# Improved auto-adjustment function for visualizer.py +# Replace this function in your visualizer.py script + +def process_page(pdf_path, page_num, doctags_path, output_base, dpi=200, show=False, scale=1.0, scale_x=None, scale_y=None, adjust=True): """Process a single page of the PDF with visualization.""" # Generate output paths for this page output_name = f"{Path(output_base).stem}_page_{page_num}{Path(output_base).suffix}" @@ -519,42 +522,34 @@ def process_page(pdf_path, page_num, doctags_path, output_base, dpi=200, show=Fa print(f"Zone boundaries: X({min_x}-{max_x}), Y({min_y}-{max_y})") print(f"Suggested scale factors: X={img_width/max_x:.3f}, Y={img_height/max_y:.3f}") - # Apply scaling to coordinates if required - if scale != 1.0 or scale_x is not None or scale_y is not None: - x_scale = scale_x if scale_x is not None else scale - y_scale = scale_y if scale_y is not None else scale - - for zone in zones: - zone['x1'] = int(zone['x1'] * x_scale) - zone['y1'] = int(zone['y1'] * y_scale) - zone['x2'] = int(zone['x2'] * x_scale) - zone['y2'] = int(zone['y2'] * y_scale) - - print(f"Applied scaling: X={x_scale}, Y={y_scale}") - - # Auto-adjust scaling if requested - if adjust: - # Find the maximum coordinates in the zones - max_x = max([zone['x2'] for zone in zones]) if zones else 0 - max_y = max([zone['y2'] for zone in zones]) if zones else 0 - - # If max coordinates exceed image dimensions or are too small - if max_x > 0 and max_y > 0: + # Always apply automatic scaling (making adjust=True by default) + # This solves the common scaling issue between DocTags coordinates and image dimensions + if adjust: width, height = image.size - # Calculate appropriate scaling factors - if max_x > width * 1.1 or max_x < width * 0.5: - x_scale = width / max_x + # Calculate appropriate scaling factors with better heuristics + # Use smaller scaling to avoid cutting off content + if max_x > 0: + x_scale = min(width / max_x, 1.0) if max_x > width else max(width / max_x, 0.5) print(f"Auto-adjusted X scale to {x_scale:.3f} (image width: {width}, max zone x: {max_x})") else: x_scale = 1.0 - if max_y > height * 1.1 or max_y < height * 0.5: - y_scale = height / max_y + if max_y > 0: + y_scale = min(height / max_y, 1.0) if max_y > height else max(height / max_y, 0.5) print(f"Auto-adjusted Y scale to {y_scale:.3f} (image height: {height}, max zone y: {max_y})") else: y_scale = 1.0 + # Apply more aggressive adjustment if image and zones are very different in scale + if max_x > width * 5 or max_x < width / 5: + x_scale = width / max_x + print(f"Major X scale adjustment to {x_scale:.3f}") + + if max_y > height * 5 or max_y < height / 5: + y_scale = height / max_y + print(f"Major Y scale adjustment to {y_scale:.3f}") + # Apply the scaling to all zones if x_scale != 1.0 or y_scale != 1.0: for zone in zones: