Add scaling issues fix
14
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
|
||||
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
|
||||
196
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'<loc_(\d+)><loc_(\d+)><loc_(\d+)><loc_(\d+)>'
|
||||
|
||||
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"<loc_{new_x1}><loc_{new_y1}><loc_{new_x2}><loc_{new_y2}>"
|
||||
|
||||
# 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())
|
||||
7
results/page_001.doctags.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<picture><loc_579><loc_350><loc_1075><loc_700>POLYTROPIC Logo</loc_350></picture>
|
||||
<section_header_level_1><loc_248.1><loc_818><loc_1405.8999999999999><loc_1402>LIVRET D'AIDE AU DIAGNOSTIC DE PANNE</loc_818></section_header_level_1>
|
||||
<text><loc_248.1><loc_1518><loc_1405.8999999999999><loc_1705>Pompe à chaleur pour piscine 2017/2019</loc_1518></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>1</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_001.doctags_viz_page_1.debug.png
Normal file
|
After Width: | Height: | Size: 173 KiB |
264
results/page_001.doctags_viz_page_1.html
Normal file
17
results/page_002.doctags.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_65><loc_187><loc_300><loc_327>SOMMAIRE</loc_187></section_header_level_1>
|
||||
<text><loc_65><loc_347><loc_1454><loc_428>I. Identification des machines</loc_347></text>
|
||||
<text><loc_1554><loc_347><loc_1589><loc_428>3</loc_347></text>
|
||||
<text><loc_65><loc_433><loc_1454><loc_514>II. Fonctionnements</loc_433></text>
|
||||
<text><loc_1554><loc_433><loc_1589><loc_514>9</loc_433></text>
|
||||
<text><loc_65><loc_519><loc_1454><loc_600>III. Diagnostic de panne frigorifique</loc_519></text>
|
||||
<text><loc_1554><loc_519><loc_1589><loc_600>9</loc_519></text>
|
||||
<text><loc_65><loc_605><loc_1454><loc_686>IV. Logigramme de Diagnostic de pannes électriques</loc_605></text>
|
||||
<text><loc_1554><loc_605><loc_1589><loc_686>12</loc_605></text>
|
||||
<text><loc_65><loc_691><loc_1454><loc_772>V. Vérification des composants</loc_691></text>
|
||||
<text><loc_1554><loc_691><loc_1589><loc_772>16</loc_691></text>
|
||||
<text><loc_65><loc_777><loc_1454><loc_858>VI. Schémas électriques</loc_777></text>
|
||||
<text><loc_65><loc_863><loc_1454><loc_944>VII. Dimensions, éclatés et pièces détachées</loc_863></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293></loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_002.doctags_viz_page_2.debug.png
Normal file
|
After Width: | Height: | Size: 287 KiB |
424
results/page_002.doctags_viz_page_2.html
Normal file
9
results/page_003.doctags.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<text><loc_65><loc_187><loc_1589><loc_327>Généralités avant toute intervention sur une pompe à chaleur.</loc_187></text>
|
||||
<section_header_level_1><loc_100><loc_347><loc_1554><loc_463>1. Identification des machines</loc_347></section_header_level_1>
|
||||
<table><loc_330.8><loc_493><loc_1323.2><loc_843>Tableau des modèles de pompes à chaleur</loc_493></table>
|
||||
<section_header_level_1><loc_100><loc_873><loc_1554><loc_989>2. Sélection de la pompe à chaleur</loc_873></section_header_level_1>
|
||||
<text><loc_65><loc_1009><loc_1589><loc_1125>La puissance de la pompe à chaleur doit correspondre au volume et dimensions de la piscine :</loc_1009></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>3</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_003.doctags_viz_page_3.debug.png
Normal file
|
After Width: | Height: | Size: 281 KiB |
307
results/page_003.doctags_viz_page_3.html
Normal file
9
results/page_004.doctags.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<text><loc_65><loc_187><loc_1589><loc_327>En général, on utilise la formule générique « T° d'eau / 2 = temps de filtration ».</loc_187></text>
|
||||
<text><loc_65><loc_347><loc_1589><loc_440>Exemple : Température d'eau à 28°c : 28 / 2 = 14 h de filtration par jour.</loc_347></text>
|
||||
<text><loc_65><loc_470><loc_1589><loc_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.</loc_470></text>
|
||||
<section_header_level_1><loc_100><loc_790><loc_1554><loc_906>3. Raccordement hydraulique</loc_790></section_header_level_1>
|
||||
<text><loc_65><loc_926><loc_1589><loc_1042>La tuyauterie de raccordement de la PAC doit avoir un diamètre de 50 mm au minimum (63mm pour la Master XL)</loc_926></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>4</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_004.doctags_viz_page_4.debug.png
Normal file
|
After Width: | Height: | Size: 447 KiB |
320
results/page_004.doctags_viz_page_4.html
Normal file
8
results/page_005.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 5</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 5.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 5.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 5.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>5</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_005.doctags_viz_page_5.debug.png
Normal file
|
After Width: | Height: | Size: 343 KiB |
307
results/page_005.doctags_viz_page_5.html
Normal file
8
results/page_006.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 6</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 6.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 6.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 6.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>6</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_006.doctags_viz_page_6.debug.png
Normal file
|
After Width: | Height: | Size: 537 KiB |
307
results/page_006.doctags_viz_page_6.html
Normal file
8
results/page_007.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 7</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 7.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 7.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 7.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>7</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_007.doctags_viz_page_7.debug.png
Normal file
|
After Width: | Height: | Size: 165 KiB |
307
results/page_007.doctags_viz_page_7.html
Normal file
8
results/page_008.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 8</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 8.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 8.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 8.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>8</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_008.doctags_viz_page_8.debug.png
Normal file
|
After Width: | Height: | Size: 573 KiB |
307
results/page_008.doctags_viz_page_8.html
Normal file
8
results/page_009.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 9</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 9.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 9.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 9.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>9</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_009.doctags_viz_page_9.debug.png
Normal file
|
After Width: | Height: | Size: 329 KiB |
307
results/page_009.doctags_viz_page_9.html
Normal file
8
results/page_010.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 10</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 10.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 10.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 10.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>10</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_010.doctags_viz_page_10.debug.png
Normal file
|
After Width: | Height: | Size: 928 KiB |
307
results/page_010.doctags_viz_page_10.html
Normal file
8
results/page_011.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 11</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 11.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 11.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 11.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>11</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_011.doctags_viz_page_11.debug.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
307
results/page_011.doctags_viz_page_11.html
Normal file
8
results/page_012.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 12</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 12.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 12.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 12.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>12</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_012.doctags_viz_page_12.debug.png
Normal file
|
After Width: | Height: | Size: 169 KiB |
307
results/page_012.doctags_viz_page_12.html
Normal file
8
results/page_013.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 13</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 13.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 13.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 13.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>13</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_013.doctags_viz_page_13.debug.png
Normal file
|
After Width: | Height: | Size: 875 KiB |
307
results/page_013.doctags_viz_page_13.html
Normal file
8
results/page_014.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 14</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 14.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 14.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 14.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>14</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_014.doctags_viz_page_14.debug.png
Normal file
|
After Width: | Height: | Size: 270 KiB |
307
results/page_014.doctags_viz_page_14.html
Normal file
8
results/page_015.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 15</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 15.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 15.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 15.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>15</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_015.doctags_viz_page_15.debug.png
Normal file
|
After Width: | Height: | Size: 621 KiB |
307
results/page_015.doctags_viz_page_15.html
Normal file
8
results/page_016.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 16</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 16.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 16.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 16.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>16</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_016.doctags_viz_page_16.debug.png
Normal file
|
After Width: | Height: | Size: 663 KiB |
307
results/page_016.doctags_viz_page_16.html
Normal file
8
results/page_017.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 17</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 17.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 17.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 17.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>17</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_017.doctags_viz_page_17.debug.png
Normal file
|
After Width: | Height: | Size: 330 KiB |
307
results/page_017.doctags_viz_page_17.html
Normal file
8
results/page_018.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 18</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 18.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 18.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 18.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>18</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_018.doctags_viz_page_18.debug.png
Normal file
|
After Width: | Height: | Size: 388 KiB |
307
results/page_018.doctags_viz_page_18.html
Normal file
8
results/page_019.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 19</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 19.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 19.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 19.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>19</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_019.doctags_viz_page_19.debug.png
Normal file
|
After Width: | Height: | Size: 1.8 MiB |
307
results/page_019.doctags_viz_page_19.html
Normal file
8
results/page_020.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 20</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 20.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 20.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 20.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>20</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_020.doctags_viz_page_20.debug.png
Normal file
|
After Width: | Height: | Size: 324 KiB |
307
results/page_020.doctags_viz_page_20.html
Normal file
8
results/page_021.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 21</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 21.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 21.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 21.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>21</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_021.doctags_viz_page_21.debug.png
Normal file
|
After Width: | Height: | Size: 120 KiB |
307
results/page_021.doctags_viz_page_21.html
Normal file
8
results/page_022.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 22</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 22.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 22.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 22.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>22</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_022.doctags_viz_page_22.debug.png
Normal file
|
After Width: | Height: | Size: 383 KiB |
307
results/page_022.doctags_viz_page_22.html
Normal file
8
results/page_023.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 23</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 23.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 23.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 23.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>23</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_023.doctags_viz_page_23.debug.png
Normal file
|
After Width: | Height: | Size: 244 KiB |
307
results/page_023.doctags_viz_page_23.html
Normal file
8
results/page_024.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 24</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 24.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 24.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 24.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>24</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_024.doctags_viz_page_24.debug.png
Normal file
|
After Width: | Height: | Size: 348 KiB |
307
results/page_024.doctags_viz_page_24.html
Normal file
8
results/page_025.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 25</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 25.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 25.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 25.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>25</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_025.doctags_viz_page_25.debug.png
Normal file
|
After Width: | Height: | Size: 318 KiB |
307
results/page_025.doctags_viz_page_25.html
Normal file
8
results/page_026.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 26</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 26.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 26.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 26.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>26</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_026.doctags_viz_page_26.debug.png
Normal file
|
After Width: | Height: | Size: 337 KiB |
307
results/page_026.doctags_viz_page_26.html
Normal file
8
results/page_027.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 27</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 27.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 27.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 27.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>27</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_027.doctags_viz_page_27.debug.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
307
results/page_027.doctags_viz_page_27.html
Normal file
8
results/page_028.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 28</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 28.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 28.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 28.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>28</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_028.doctags_viz_page_28.debug.png
Normal file
|
After Width: | Height: | Size: 418 KiB |
307
results/page_028.doctags_viz_page_28.html
Normal file
8
results/page_029.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 29</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 29.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 29.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 29.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>29</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_029.doctags_viz_page_29.debug.png
Normal file
|
After Width: | Height: | Size: 424 KiB |
307
results/page_029.doctags_viz_page_29.html
Normal file
8
results/page_030.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 30</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 30.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 30.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 30.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>30</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_030.doctags_viz_page_30.debug.png
Normal file
|
After Width: | Height: | Size: 455 KiB |
307
results/page_030.doctags_viz_page_30.html
Normal file
8
results/page_031.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 31</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 31.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 31.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 31.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>31</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_031.doctags_viz_page_31.debug.png
Normal file
|
After Width: | Height: | Size: 294 KiB |
307
results/page_031.doctags_viz_page_31.html
Normal file
8
results/page_032.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 32</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 32.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 32.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 32.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>32</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_032.doctags_viz_page_32.debug.png
Normal file
|
After Width: | Height: | Size: 368 KiB |
307
results/page_032.doctags_viz_page_32.html
Normal file
8
results/page_033.doctags.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<doctag>
|
||||
<page_header><loc_65><loc_116><loc_1589><loc_256>Livret d'aide au diagnostic de panne électrique</loc_116></page_header>
|
||||
<section_header_level_1><loc_100><loc_350><loc_1554><loc_490>Section 33</loc_350></section_header_level_1>
|
||||
<text><loc_65><loc_490><loc_1589><loc_630>Paragraph 1 on page 33.</loc_490></text>
|
||||
<text><loc_65><loc_570><loc_1589><loc_710>Paragraph 2 on page 33.</loc_570></text>
|
||||
<text><loc_65><loc_650><loc_1589><loc_790>Paragraph 3 on page 33.</loc_650></text>
|
||||
<page_footer><loc_817><loc_2223><loc_837><loc_2293>33</loc_2223></page_footer>
|
||||
</doctag>
|
||||
BIN
results/page_033.doctags_viz_page_33.debug.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |