├── .gitignore ├── LICENSE ├── README.md ├── data ├── 001.png ├── 002.png ├── 003.png ├── 004.png ├── 005.png ├── 006.png ├── 007.png ├── 008.png ├── 009.png ├── 010.png ├── 011.png ├── 012.png ├── 013.png ├── 014.png ├── 015.png ├── 016.png └── 017.png ├── doc ├── Text Segmentation.pdf └── results │ ├── 001.png │ ├── 001_1_crop.png │ ├── 001_2_binary.png │ ├── 001_3_lines.png │ ├── 001_4_summary_001.png │ ├── 001_4_summary_002.png │ ├── 001_4_summary_003.png │ ├── 001_4_summary_004.png │ ├── 001_4_summary_005.png │ ├── 001_4_summary_006.png │ ├── 001_4_summary_007.png │ ├── 001_4_summary_008.png │ ├── 001_4_summary_009.png │ ├── 001_4_summary_010.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 002_006.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 003_008.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 004_008.png │ │ ├── 004_009.png │ │ ├── 004_010.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 005_007.png │ │ ├── 005_008.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 006_008.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 007_007.png │ │ ├── 007_008.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 008_005.png │ │ ├── 008_006.png │ │ ├── 008_007.png │ │ ├── 008_008.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ ├── 010_005.png │ │ └── 010_006.png │ ├── 002.png │ ├── 002_1_crop.png │ ├── 002_2_binary.png │ ├── 002_3_lines.png │ ├── 002_4_summary_001.png │ ├── 002_4_summary_002.png │ ├── 002_4_summary_003.png │ ├── 002_4_summary_004.png │ ├── 002_4_summary_005.png │ ├── 002_4_summary_006.png │ ├── 002_4_summary_007.png │ ├── 002_4_summary_008.png │ ├── 002_4_summary_009.png │ ├── 002_4_summary_010.png │ ├── 002_4_summary_011.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 005_007.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 006_008.png │ │ ├── 006_009.png │ │ ├── 006_010.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 007_007.png │ │ ├── 007_008.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 008_005.png │ │ ├── 008_006.png │ │ ├── 008_007.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ ├── 010_005.png │ │ ├── 010_006.png │ │ ├── 010_007.png │ │ ├── 010_008.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ └── 011_007.png │ ├── 003.png │ ├── 003_1_crop.png │ ├── 003_2_binary.png │ ├── 003_3_lines.png │ ├── 003_4_summary_001.png │ ├── 003_4_summary_002.png │ ├── 003_4_summary_003.png │ ├── 003_4_summary_004.png │ ├── 003_4_summary_005.png │ ├── 003_4_summary_006.png │ ├── 003_4_summary_007.png │ ├── 003_4_summary_008.png │ ├── 003_4_summary_009.png │ ├── 003_4_summary_010.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 001_008.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 002_006.png │ │ ├── 002_007.png │ │ ├── 002_008.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 004_008.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 007_007.png │ │ ├── 007_008.png │ │ ├── 007_009.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 008_005.png │ │ ├── 008_006.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ └── 010_003.png │ ├── 004.png │ ├── 004_1_crop.png │ ├── 004_2_binary.png │ ├── 004_3_lines.png │ ├── 004_4_summary_001.png │ ├── 004_4_summary_002.png │ ├── 004_4_summary_003.png │ ├── 004_4_summary_004.png │ ├── 004_4_summary_005.png │ ├── 004_4_summary_006.png │ ├── 004_4_summary_007.png │ ├── 004_4_summary_008.png │ ├── 004_4_summary_009.png │ ├── 004_4_summary_010.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 001_008.png │ │ ├── 001_009.png │ │ ├── 001_010.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 004_008.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 005_007.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ ├── 010_005.png │ │ ├── 010_006.png │ │ └── 010_007.png │ ├── 005.png │ ├── 005_1_crop.png │ ├── 005_2_binary.png │ ├── 005_3_lines.png │ ├── 005_4_summary_001.png │ ├── 005_4_summary_002.png │ ├── 005_4_summary_003.png │ ├── 005_4_summary_004.png │ ├── 005_4_summary_005.png │ ├── 005_4_summary_006.png │ ├── 005_4_summary_007.png │ ├── 005_4_summary_008.png │ ├── 005_4_summary_009.png │ ├── 005_4_summary_010.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 002_006.png │ │ ├── 002_007.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 004_008.png │ │ ├── 004_009.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 005_007.png │ │ ├── 006_001.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 008_005.png │ │ ├── 008_006.png │ │ ├── 008_007.png │ │ ├── 008_008.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 009_009.png │ │ ├── 009_010.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ └── 010_005.png │ ├── 006.png │ ├── 006_1_crop.png │ ├── 006_2_binary.png │ ├── 006_3_lines.png │ ├── 006_4_summary_001.png │ ├── 006_4_summary_002.png │ ├── 006_4_summary_003.png │ ├── 006_4_summary_004.png │ ├── 006_4_summary_005.png │ ├── 006_4_summary_006.png │ ├── 006_4_summary_007.png │ ├── 006_4_summary_008.png │ ├── 006_4_summary_009.png │ ├── 006_4_summary_010.png │ ├── 006_4_summary_011.png │ ├── 006_4_summary_012.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 002_001.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ ├── 010_005.png │ │ ├── 011_001.png │ │ └── 012_001.png │ ├── 007.png │ ├── 007_1_crop.png │ ├── 007_2_binary.png │ ├── 007_3_lines.png │ ├── 007_4_summary_001.png │ ├── 007_4_summary_002.png │ ├── 007_4_summary_003.png │ ├── 007_4_summary_004.png │ ├── 007_4_summary_005.png │ ├── 007_4_summary_006.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 002_006.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ └── 006_001.png │ ├── 008.png │ ├── 008_1_crop.png │ ├── 008_2_binary.png │ ├── 008_3_lines.png │ ├── 008_4_summary_001.png │ ├── 008_4_summary_002.png │ ├── 008_4_summary_003.png │ ├── 008_4_summary_004.png │ ├── 008_4_summary_005.png │ ├── 008_4_summary_006.png │ ├── 008_4_summary_007.png │ ├── 008_4_summary_008.png │ ├── 008_4_summary_009.png │ ├── 008_4_summary_010.png │ ├── 008_4_summary_011.png │ ├── 008_4_summary_012.png │ ├── 008_4_summary_013.png │ ├── 008_4_summary_014.png │ ├── 008_4_summary_015.png │ ├── 008_4_summary_016.png │ ├── 008_4_summary_017.png │ ├── 008_4_summary_018.png │ ├── 008_4_summary_019.png │ ├── 008_4_summary_020.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 003_008.png │ │ ├── 003_009.png │ │ ├── 003_010.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 008_001.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 013_001.png │ │ ├── 013_002.png │ │ ├── 013_003.png │ │ ├── 014_001.png │ │ ├── 014_002.png │ │ ├── 014_003.png │ │ ├── 015_001.png │ │ ├── 015_002.png │ │ ├── 015_003.png │ │ ├── 015_004.png │ │ ├── 015_005.png │ │ ├── 015_006.png │ │ ├── 015_007.png │ │ ├── 015_008.png │ │ ├── 016_001.png │ │ ├── 016_002.png │ │ ├── 017_001.png │ │ ├── 017_002.png │ │ ├── 017_003.png │ │ ├── 017_004.png │ │ ├── 017_005.png │ │ ├── 018_001.png │ │ ├── 018_002.png │ │ ├── 019_001.png │ │ ├── 019_002.png │ │ ├── 019_003.png │ │ ├── 019_004.png │ │ ├── 019_005.png │ │ ├── 019_006.png │ │ └── 020_001.png │ ├── 009.png │ ├── 009_1_crop.png │ ├── 009_2_binary.png │ ├── 009_3_lines.png │ ├── 009_4_summary_001.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 001_008.png │ │ └── 001_009.png │ ├── 010.png │ ├── 010_1_crop.png │ ├── 010_2_binary.png │ ├── 010_3_lines.png │ ├── 010_4_summary_001.png │ ├── 010_4_summary_002.png │ ├── 010_4_summary_003.png │ ├── 010_4_summary_004.png │ ├── 010_4_summary_005.png │ ├── 010_4_summary_006.png │ ├── 010_4_summary_007.png │ ├── 010_4_summary_008.png │ ├── 010_4_summary_009.png │ ├── 010_4_summary_010.png │ ├── 010_4_summary_011.png │ ├── 010_4_summary_012.png │ ├── 010_4_summary_013.png │ ├── 010_4_summary_014.png │ ├── 010_4_summary_015.png │ ├── 010_4_summary_016.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 002_001.png │ │ ├── 003_001.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 004_008.png │ │ ├── 004_009.png │ │ ├── 004_010.png │ │ ├── 004_011.png │ │ ├── 004_012.png │ │ ├── 004_013.png │ │ ├── 004_014.png │ │ ├── 005_001.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 006_008.png │ │ ├── 006_009.png │ │ ├── 006_010.png │ │ ├── 006_011.png │ │ ├── 006_012.png │ │ ├── 006_013.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 008_001.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 009_009.png │ │ ├── 009_010.png │ │ ├── 010_001.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 012_004.png │ │ ├── 012_005.png │ │ ├── 012_006.png │ │ ├── 012_007.png │ │ ├── 012_008.png │ │ ├── 012_009.png │ │ ├── 012_010.png │ │ ├── 013_001.png │ │ ├── 013_002.png │ │ ├── 013_003.png │ │ ├── 013_004.png │ │ ├── 013_005.png │ │ ├── 013_006.png │ │ ├── 013_007.png │ │ ├── 013_008.png │ │ ├── 013_009.png │ │ ├── 014_001.png │ │ ├── 014_002.png │ │ ├── 014_003.png │ │ ├── 014_004.png │ │ ├── 014_005.png │ │ ├── 014_006.png │ │ ├── 014_007.png │ │ ├── 014_008.png │ │ ├── 015_001.png │ │ ├── 015_002.png │ │ ├── 015_003.png │ │ ├── 015_004.png │ │ ├── 015_005.png │ │ ├── 015_006.png │ │ ├── 015_007.png │ │ ├── 016_001.png │ │ └── 016_002.png │ ├── 011.png │ ├── 011_1_crop.png │ ├── 011_2_binary.png │ ├── 011_3_lines.png │ ├── 011_4_summary_001.png │ ├── 011_4_summary_002.png │ ├── 011_4_summary_003.png │ ├── 011_4_summary_004.png │ ├── 011_4_summary_005.png │ ├── 011_4_summary_006.png │ ├── 011_4_summary_007.png │ ├── 011_4_summary_008.png │ ├── 011_4_summary_009.png │ ├── 011_4_summary_010.png │ ├── 011_4_summary_011.png │ ├── 011_4_summary_012.png │ ├── 011_4_summary_013.png │ ├── 011_4_summary_014.png │ ├── 011_4_summary_015.png │ ├── 011_4_summary_016.png │ ├── 011_4_summary_017.png │ ├── 011_4_summary_018.png │ ├── 011_4_summary_019.png │ ├── 011_4_summary_020.png │ ├── 011_4_summary_021.png │ └── words │ │ ├── 001_001.png │ │ ├── 002_001.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 006_008.png │ │ ├── 006_009.png │ │ ├── 006_010.png │ │ ├── 006_011.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ ├── 011_007.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 013_001.png │ │ ├── 013_002.png │ │ ├── 013_003.png │ │ ├── 014_001.png │ │ ├── 015_001.png │ │ ├── 015_002.png │ │ ├── 015_003.png │ │ ├── 015_004.png │ │ ├── 015_005.png │ │ ├── 015_006.png │ │ ├── 015_007.png │ │ ├── 015_008.png │ │ ├── 015_009.png │ │ ├── 015_010.png │ │ ├── 015_011.png │ │ ├── 015_012.png │ │ ├── 015_013.png │ │ ├── 016_001.png │ │ ├── 017_001.png │ │ ├── 017_002.png │ │ ├── 017_003.png │ │ ├── 017_004.png │ │ ├── 018_001.png │ │ ├── 018_002.png │ │ ├── 018_003.png │ │ ├── 018_004.png │ │ ├── 018_005.png │ │ ├── 019_001.png │ │ ├── 019_002.png │ │ ├── 019_003.png │ │ ├── 019_004.png │ │ ├── 019_005.png │ │ ├── 019_006.png │ │ ├── 020_001.png │ │ ├── 020_002.png │ │ ├── 020_003.png │ │ ├── 020_004.png │ │ ├── 021_001.png │ │ ├── 021_002.png │ │ ├── 021_003.png │ │ └── 021_004.png │ ├── 012.png │ ├── 012_1_crop.png │ ├── 012_2_binary.png │ ├── 012_3_lines.png │ ├── 012_4_summary_001.png │ ├── 012_4_summary_002.png │ ├── 012_4_summary_003.png │ ├── 012_4_summary_004.png │ ├── 012_4_summary_005.png │ ├── 012_4_summary_006.png │ ├── 012_4_summary_007.png │ ├── 012_4_summary_008.png │ ├── 012_4_summary_009.png │ ├── 012_4_summary_010.png │ ├── 012_4_summary_011.png │ ├── 012_4_summary_012.png │ ├── 012_4_summary_013.png │ ├── 012_4_summary_014.png │ ├── 012_4_summary_015.png │ ├── 012_4_summary_016.png │ ├── 012_4_summary_017.png │ ├── 012_4_summary_018.png │ ├── 012_4_summary_019.png │ ├── 012_4_summary_020.png │ ├── 012_4_summary_021.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 002_001.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 006_007.png │ │ ├── 006_008.png │ │ ├── 006_009.png │ │ ├── 006_010.png │ │ ├── 006_011.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ ├── 011_007.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 012_004.png │ │ ├── 013_001.png │ │ ├── 014_001.png │ │ ├── 015_001.png │ │ ├── 016_001.png │ │ ├── 016_002.png │ │ ├── 016_003.png │ │ ├── 016_004.png │ │ ├── 017_001.png │ │ ├── 017_002.png │ │ ├── 017_003.png │ │ ├── 017_004.png │ │ ├── 018_001.png │ │ ├── 018_002.png │ │ ├── 018_003.png │ │ ├── 018_004.png │ │ ├── 018_005.png │ │ ├── 018_006.png │ │ ├── 018_007.png │ │ ├── 019_001.png │ │ ├── 019_002.png │ │ ├── 019_003.png │ │ ├── 019_004.png │ │ ├── 019_005.png │ │ ├── 019_006.png │ │ ├── 019_007.png │ │ ├── 019_008.png │ │ ├── 020_001.png │ │ ├── 021_001.png │ │ ├── 021_002.png │ │ ├── 021_003.png │ │ ├── 021_004.png │ │ ├── 021_005.png │ │ ├── 021_006.png │ │ ├── 021_007.png │ │ └── 021_008.png │ ├── 013.png │ ├── 013_1_crop.png │ ├── 013_2_binary.png │ ├── 013_3_lines.png │ ├── 013_4_summary_001.png │ ├── 013_4_summary_002.png │ ├── 013_4_summary_003.png │ ├── 013_4_summary_004.png │ ├── 013_4_summary_005.png │ ├── 013_4_summary_006.png │ ├── 013_4_summary_007.png │ ├── 013_4_summary_008.png │ ├── 013_4_summary_009.png │ ├── 013_4_summary_010.png │ ├── 013_4_summary_011.png │ ├── 013_4_summary_012.png │ ├── 013_4_summary_013.png │ ├── 013_4_summary_014.png │ ├── 013_4_summary_015.png │ ├── 013_4_summary_016.png │ ├── 013_4_summary_017.png │ ├── 013_4_summary_018.png │ ├── 013_4_summary_019.png │ ├── 013_4_summary_020.png │ ├── 013_4_summary_021.png │ └── words │ │ ├── 001_001.png │ │ ├── 002_001.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 003_006.png │ │ ├── 003_007.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 006_001.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 007_005.png │ │ ├── 007_006.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 010_004.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 013_001.png │ │ ├── 013_002.png │ │ ├── 013_003.png │ │ ├── 014_001.png │ │ ├── 014_002.png │ │ ├── 015_001.png │ │ ├── 016_001.png │ │ ├── 017_001.png │ │ ├── 017_002.png │ │ ├── 017_003.png │ │ ├── 018_001.png │ │ ├── 018_002.png │ │ ├── 018_003.png │ │ ├── 018_004.png │ │ ├── 018_005.png │ │ ├── 018_006.png │ │ ├── 018_007.png │ │ ├── 019_001.png │ │ ├── 019_002.png │ │ ├── 019_003.png │ │ ├── 019_004.png │ │ ├── 019_005.png │ │ ├── 019_006.png │ │ ├── 020_001.png │ │ ├── 021_001.png │ │ ├── 021_002.png │ │ ├── 021_003.png │ │ ├── 021_004.png │ │ ├── 021_005.png │ │ ├── 021_006.png │ │ ├── 021_007.png │ │ └── 021_008.png │ ├── 014.png │ ├── 014_1_crop.png │ ├── 014_2_binary.png │ ├── 014_3_lines.png │ ├── 014_4_summary_001.png │ ├── 014_4_summary_002.png │ ├── 014_4_summary_003.png │ ├── 014_4_summary_004.png │ ├── 014_4_summary_005.png │ ├── 014_4_summary_006.png │ ├── 014_4_summary_007.png │ ├── 014_4_summary_008.png │ ├── 014_4_summary_009.png │ ├── 014_4_summary_010.png │ ├── 014_4_summary_011.png │ ├── 014_4_summary_012.png │ ├── 014_4_summary_013.png │ ├── 014_4_summary_014.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 001_006.png │ │ ├── 001_007.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ ├── 009_004.png │ │ ├── 009_005.png │ │ ├── 009_006.png │ │ ├── 009_007.png │ │ ├── 009_008.png │ │ ├── 010_001.png │ │ ├── 010_002.png │ │ ├── 010_003.png │ │ ├── 011_001.png │ │ ├── 011_002.png │ │ ├── 011_003.png │ │ ├── 011_004.png │ │ ├── 011_005.png │ │ ├── 011_006.png │ │ ├── 011_007.png │ │ ├── 012_001.png │ │ ├── 012_002.png │ │ ├── 012_003.png │ │ ├── 013_001.png │ │ ├── 013_002.png │ │ ├── 013_003.png │ │ ├── 013_004.png │ │ ├── 013_005.png │ │ ├── 014_001.png │ │ ├── 014_002.png │ │ ├── 014_003.png │ │ ├── 014_004.png │ │ ├── 014_005.png │ │ ├── 014_006.png │ │ └── 014_007.png │ ├── 015.png │ ├── 015_1_crop.png │ ├── 015_2_binary.png │ ├── 015_3_lines.png │ ├── 015_4_summary_001.png │ ├── 015_4_summary_002.png │ ├── 015_4_summary_003.png │ ├── 015_4_summary_004.png │ ├── 015_4_summary_005.png │ ├── 015_4_summary_006.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 002_005.png │ │ ├── 002_006.png │ │ ├── 002_007.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 003_005.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ └── 006_001.png │ ├── 016.png │ ├── 016_1_crop.png │ ├── 016_2_binary.png │ ├── 016_3_lines.png │ ├── 016_4_summary_001.png │ ├── 016_4_summary_002.png │ ├── 016_4_summary_003.png │ ├── 016_4_summary_004.png │ ├── 016_4_summary_005.png │ ├── 016_4_summary_006.png │ ├── 016_4_summary_007.png │ ├── 016_4_summary_008.png │ ├── 016_4_summary_009.png │ └── words │ │ ├── 001_001.png │ │ ├── 001_002.png │ │ ├── 001_003.png │ │ ├── 001_004.png │ │ ├── 001_005.png │ │ ├── 002_001.png │ │ ├── 002_002.png │ │ ├── 002_003.png │ │ ├── 002_004.png │ │ ├── 003_001.png │ │ ├── 003_002.png │ │ ├── 003_003.png │ │ ├── 003_004.png │ │ ├── 004_001.png │ │ ├── 004_002.png │ │ ├── 004_003.png │ │ ├── 004_004.png │ │ ├── 004_005.png │ │ ├── 004_006.png │ │ ├── 004_007.png │ │ ├── 005_001.png │ │ ├── 005_002.png │ │ ├── 005_003.png │ │ ├── 005_004.png │ │ ├── 005_005.png │ │ ├── 005_006.png │ │ ├── 005_007.png │ │ ├── 006_001.png │ │ ├── 006_002.png │ │ ├── 006_003.png │ │ ├── 006_004.png │ │ ├── 006_005.png │ │ ├── 006_006.png │ │ ├── 007_001.png │ │ ├── 007_002.png │ │ ├── 007_003.png │ │ ├── 007_004.png │ │ ├── 008_001.png │ │ ├── 008_002.png │ │ ├── 008_003.png │ │ ├── 008_004.png │ │ ├── 009_001.png │ │ ├── 009_002.png │ │ ├── 009_003.png │ │ └── 009_004.png │ └── 017.png │ ├── 017_1_crop.png │ ├── 017_2_binary.png │ ├── 017_3_lines.png │ ├── 017_4_summary_001.png │ ├── 017_4_summary_002.png │ ├── 017_4_summary_003.png │ ├── 017_4_summary_004.png │ ├── 017_4_summary_005.png │ ├── 017_4_summary_006.png │ ├── 017_4_summary_007.png │ ├── 017_4_summary_008.png │ └── words │ ├── 001_001.png │ ├── 001_002.png │ ├── 001_003.png │ ├── 002_001.png │ ├── 002_002.png │ ├── 002_003.png │ ├── 002_004.png │ ├── 002_005.png │ ├── 002_006.png │ ├── 003_001.png │ ├── 003_002.png │ ├── 003_003.png │ ├── 003_004.png │ ├── 004_001.png │ ├── 004_002.png │ ├── 004_003.png │ ├── 004_004.png │ ├── 005_001.png │ ├── 005_002.png │ ├── 005_003.png │ ├── 005_004.png │ ├── 005_005.png │ ├── 006_001.png │ ├── 006_002.png │ ├── 006_003.png │ ├── 006_004.png │ ├── 007_001.png │ ├── 007_002.png │ ├── 007_003.png │ ├── 007_004.png │ ├── 008_001.png │ ├── 008_002.png │ ├── 008_003.png │ └── 008_004.png └── src ├── imgproc ├── __init__.py └── cpp │ ├── Binarization.cpp │ ├── Binarization.hpp │ ├── LineSegmentation.cpp │ ├── LineSegmentation.hpp │ ├── Scanner.cpp │ ├── Scanner.hpp │ ├── WordSegmentation.cpp │ ├── WordSegmentation.hpp │ └── main.cpp └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /data/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/001.png -------------------------------------------------------------------------------- /data/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/002.png -------------------------------------------------------------------------------- /data/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/003.png -------------------------------------------------------------------------------- /data/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/004.png -------------------------------------------------------------------------------- /data/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/005.png -------------------------------------------------------------------------------- /data/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/006.png -------------------------------------------------------------------------------- /data/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/007.png -------------------------------------------------------------------------------- /data/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/008.png -------------------------------------------------------------------------------- /data/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/009.png -------------------------------------------------------------------------------- /data/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/010.png -------------------------------------------------------------------------------- /data/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/011.png -------------------------------------------------------------------------------- /data/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/012.png -------------------------------------------------------------------------------- /data/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/013.png -------------------------------------------------------------------------------- /data/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/014.png -------------------------------------------------------------------------------- /data/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/015.png -------------------------------------------------------------------------------- /data/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/016.png -------------------------------------------------------------------------------- /data/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/data/017.png -------------------------------------------------------------------------------- /doc/Text Segmentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/Text Segmentation.pdf -------------------------------------------------------------------------------- /doc/results/001.png/001_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/001_1_crop.png -------------------------------------------------------------------------------- /doc/results/001.png/001_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/001_2_binary.png -------------------------------------------------------------------------------- /doc/results/001.png/001_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/001_3_lines.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/001_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/001_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/002_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/002_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/003_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/003_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_009.png -------------------------------------------------------------------------------- /doc/results/001.png/words/004_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/004_010.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/005_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/005_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/006_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/006_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/007_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/007_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/008_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/008_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/001.png/words/009_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/009_008.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_004.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_005.png -------------------------------------------------------------------------------- /doc/results/001.png/words/010_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/001.png/words/010_006.png -------------------------------------------------------------------------------- /doc/results/002.png/002_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/002_1_crop.png -------------------------------------------------------------------------------- /doc/results/002.png/002_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/002_2_binary.png -------------------------------------------------------------------------------- /doc/results/002.png/002_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/002_3_lines.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/005_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/005_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_008.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_009.png -------------------------------------------------------------------------------- /doc/results/002.png/words/006_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/006_010.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/007_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/007_008.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/008_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/008_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/009_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/009_008.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_007.png -------------------------------------------------------------------------------- /doc/results/002.png/words/010_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/010_008.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_001.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_002.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_003.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_004.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_005.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_006.png -------------------------------------------------------------------------------- /doc/results/002.png/words/011_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/002.png/words/011_007.png -------------------------------------------------------------------------------- /doc/results/003.png/003_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/003_1_crop.png -------------------------------------------------------------------------------- /doc/results/003.png/003_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/003_2_binary.png -------------------------------------------------------------------------------- /doc/results/003.png/003_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/003_3_lines.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/001_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/001_008.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/002_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/002_008.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/004_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/004_008.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/005_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/005_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_008.png -------------------------------------------------------------------------------- /doc/results/003.png/words/007_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/007_009.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/008_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/008_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/003.png/words/009_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/009_008.png -------------------------------------------------------------------------------- /doc/results/003.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/003.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/003.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/003.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/004.png/004_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/004_1_crop.png -------------------------------------------------------------------------------- /doc/results/004.png/004_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/004_2_binary.png -------------------------------------------------------------------------------- /doc/results/004.png/004_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/004_3_lines.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_007.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_008.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_009.png -------------------------------------------------------------------------------- /doc/results/004.png/words/001_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/001_010.png -------------------------------------------------------------------------------- /doc/results/004.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/004.png/words/004_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/004_008.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/005_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/005_007.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/006_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/006_007.png -------------------------------------------------------------------------------- /doc/results/004.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/008_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/008_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_004.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_005.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_006.png -------------------------------------------------------------------------------- /doc/results/004.png/words/010_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/004.png/words/010_007.png -------------------------------------------------------------------------------- /doc/results/005.png/005_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/005_1_crop.png -------------------------------------------------------------------------------- /doc/results/005.png/005_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/005_2_binary.png -------------------------------------------------------------------------------- /doc/results/005.png/005_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/005_3_lines.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/001_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/001_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/002_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/002_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_008.png -------------------------------------------------------------------------------- /doc/results/005.png/words/004_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/004_009.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/005_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/005_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/008_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/008_008.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_008.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_009.png -------------------------------------------------------------------------------- /doc/results/005.png/words/009_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/009_010.png -------------------------------------------------------------------------------- /doc/results/005.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/005.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/005.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/005.png/words/010_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/010_004.png -------------------------------------------------------------------------------- /doc/results/005.png/words/010_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/005.png/words/010_005.png -------------------------------------------------------------------------------- /doc/results/006.png/006_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/006_1_crop.png -------------------------------------------------------------------------------- /doc/results/006.png/006_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/006_2_binary.png -------------------------------------------------------------------------------- /doc/results/006.png/006_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/006_3_lines.png -------------------------------------------------------------------------------- /doc/results/006.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/006.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/006.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/006.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/006.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/008_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/008_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/006.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/006.png/words/010_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/010_004.png -------------------------------------------------------------------------------- /doc/results/006.png/words/010_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/010_005.png -------------------------------------------------------------------------------- /doc/results/006.png/words/011_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/011_001.png -------------------------------------------------------------------------------- /doc/results/006.png/words/012_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/006.png/words/012_001.png -------------------------------------------------------------------------------- /doc/results/007.png/007_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/007_1_crop.png -------------------------------------------------------------------------------- /doc/results/007.png/007_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/007_2_binary.png -------------------------------------------------------------------------------- /doc/results/007.png/007_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/007_3_lines.png -------------------------------------------------------------------------------- /doc/results/007.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/007.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/007.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/007.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/007.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/007.png/words/002_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/002_006.png -------------------------------------------------------------------------------- /doc/results/007.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/007.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/007.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/007.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/007.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/007.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/007.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/007.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/007.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/007.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/007.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/008.png/008_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/008_1_crop.png -------------------------------------------------------------------------------- /doc/results/008.png/008_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/008_2_binary.png -------------------------------------------------------------------------------- /doc/results/008.png/008_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/008_3_lines.png -------------------------------------------------------------------------------- /doc/results/008.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/002_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/002_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/002_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/002_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/002_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/002_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/002_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/002_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_008.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_009.png -------------------------------------------------------------------------------- /doc/results/008.png/words/003_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/003_010.png -------------------------------------------------------------------------------- /doc/results/008.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/007_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/007_006.png -------------------------------------------------------------------------------- /doc/results/008.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/011_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/011_006.png -------------------------------------------------------------------------------- /doc/results/008.png/words/012_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/012_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/012_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/012_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/012_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/012_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/013_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/013_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/013_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/013_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/013_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/013_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/014_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/014_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/014_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/014_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/014_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/014_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_006.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_007.png -------------------------------------------------------------------------------- /doc/results/008.png/words/015_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/015_008.png -------------------------------------------------------------------------------- /doc/results/008.png/words/016_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/016_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/016_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/016_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/017_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/017_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/017_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/017_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/017_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/017_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/017_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/017_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/017_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/017_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/018_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/018_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/018_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/018_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_001.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_002.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_003.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_004.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_005.png -------------------------------------------------------------------------------- /doc/results/008.png/words/019_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/019_006.png -------------------------------------------------------------------------------- /doc/results/008.png/words/020_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/008.png/words/020_001.png -------------------------------------------------------------------------------- /doc/results/009.png/009_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/009_1_crop.png -------------------------------------------------------------------------------- /doc/results/009.png/009_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/009_2_binary.png -------------------------------------------------------------------------------- /doc/results/009.png/009_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/009_3_lines.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_004.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_005.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_006.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_007.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_008.png -------------------------------------------------------------------------------- /doc/results/009.png/words/001_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/009.png/words/001_009.png -------------------------------------------------------------------------------- /doc/results/010.png/010_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/010_1_crop.png -------------------------------------------------------------------------------- /doc/results/010.png/010_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/010_2_binary.png -------------------------------------------------------------------------------- /doc/results/010.png/010_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/010_3_lines.png -------------------------------------------------------------------------------- /doc/results/010.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/001_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/001_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_009.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_010.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_011.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_012.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_013.png -------------------------------------------------------------------------------- /doc/results/010.png/words/004_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/004_014.png -------------------------------------------------------------------------------- /doc/results/010.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_009.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_010.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_011.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_012.png -------------------------------------------------------------------------------- /doc/results/010.png/words/006_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/006_013.png -------------------------------------------------------------------------------- /doc/results/010.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_009.png -------------------------------------------------------------------------------- /doc/results/010.png/words/009_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/009_010.png -------------------------------------------------------------------------------- /doc/results/010.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/011_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/011_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/011_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/011_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_009.png -------------------------------------------------------------------------------- /doc/results/010.png/words/012_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/012_010.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/013_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/013_009.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/014_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/014_008.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_002.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_003.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_004.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_005.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_006.png -------------------------------------------------------------------------------- /doc/results/010.png/words/015_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/015_007.png -------------------------------------------------------------------------------- /doc/results/010.png/words/016_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/016_001.png -------------------------------------------------------------------------------- /doc/results/010.png/words/016_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/010.png/words/016_002.png -------------------------------------------------------------------------------- /doc/results/011.png/011_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/011_1_crop.png -------------------------------------------------------------------------------- /doc/results/011.png/011_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/011_2_binary.png -------------------------------------------------------------------------------- /doc/results/011.png/011_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/011_3_lines.png -------------------------------------------------------------------------------- /doc/results/011.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/003_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/003_007.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_007.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_008.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_009.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_010.png -------------------------------------------------------------------------------- /doc/results/011.png/words/006_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/006_011.png -------------------------------------------------------------------------------- /doc/results/011.png/words/007_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/007_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/007_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/007_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/007_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/007_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/007_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/007_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/007_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/007_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/008_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/008_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/008_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/008_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/009_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/009_007.png -------------------------------------------------------------------------------- /doc/results/011.png/words/010_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/010_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/010_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/010_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/010_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/010_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/011_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/011_007.png -------------------------------------------------------------------------------- /doc/results/011.png/words/012_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/012_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/012_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/012_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/012_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/012_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/013_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/013_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/013_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/013_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/013_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/013_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/014_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/014_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_007.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_008.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_009.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_010.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_011.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_012.png -------------------------------------------------------------------------------- /doc/results/011.png/words/015_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/015_013.png -------------------------------------------------------------------------------- /doc/results/011.png/words/016_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/016_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/017_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/017_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/017_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/017_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/017_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/017_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/017_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/017_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/018_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/018_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/018_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/018_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/018_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/018_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/018_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/018_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/018_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/018_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_005.png -------------------------------------------------------------------------------- /doc/results/011.png/words/019_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/019_006.png -------------------------------------------------------------------------------- /doc/results/011.png/words/020_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/020_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/020_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/020_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/020_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/020_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/020_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/020_004.png -------------------------------------------------------------------------------- /doc/results/011.png/words/021_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/021_001.png -------------------------------------------------------------------------------- /doc/results/011.png/words/021_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/021_002.png -------------------------------------------------------------------------------- /doc/results/011.png/words/021_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/021_003.png -------------------------------------------------------------------------------- /doc/results/011.png/words/021_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/011.png/words/021_004.png -------------------------------------------------------------------------------- /doc/results/012.png/012_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/012_1_crop.png -------------------------------------------------------------------------------- /doc/results/012.png/012_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/012_2_binary.png -------------------------------------------------------------------------------- /doc/results/012.png/012_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/012_3_lines.png -------------------------------------------------------------------------------- /doc/results/012.png/words/001_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/001_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/001_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/001_002.png -------------------------------------------------------------------------------- /doc/results/012.png/words/002_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/002_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_002.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_003.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_004.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_005.png -------------------------------------------------------------------------------- /doc/results/012.png/words/003_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/003_006.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_002.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_003.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_004.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_005.png -------------------------------------------------------------------------------- /doc/results/012.png/words/004_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/004_006.png -------------------------------------------------------------------------------- /doc/results/012.png/words/005_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/005_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/005_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/005_002.png -------------------------------------------------------------------------------- /doc/results/012.png/words/005_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/005_003.png -------------------------------------------------------------------------------- /doc/results/012.png/words/005_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/005_004.png -------------------------------------------------------------------------------- /doc/results/012.png/words/005_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/005_005.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_001.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_002.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_003.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_004.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_005.png -------------------------------------------------------------------------------- /doc/results/012.png/words/006_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/012.png/words/006_006.png -------------------------------------------------------------------------------- /doc/results/013.png/013_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/013.png/013_1_crop.png -------------------------------------------------------------------------------- /doc/results/013.png/013_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/013.png/013_2_binary.png -------------------------------------------------------------------------------- /doc/results/013.png/013_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/013.png/013_3_lines.png -------------------------------------------------------------------------------- /doc/results/014.png/014_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/014.png/014_1_crop.png -------------------------------------------------------------------------------- /doc/results/014.png/014_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/014.png/014_2_binary.png -------------------------------------------------------------------------------- /doc/results/014.png/014_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/014.png/014_3_lines.png -------------------------------------------------------------------------------- /doc/results/015.png/015_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/015.png/015_1_crop.png -------------------------------------------------------------------------------- /doc/results/015.png/015_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/015.png/015_2_binary.png -------------------------------------------------------------------------------- /doc/results/015.png/015_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/015.png/015_3_lines.png -------------------------------------------------------------------------------- /doc/results/016.png/016_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/016.png/016_1_crop.png -------------------------------------------------------------------------------- /doc/results/016.png/016_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/016.png/016_2_binary.png -------------------------------------------------------------------------------- /doc/results/016.png/016_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/016.png/016_3_lines.png -------------------------------------------------------------------------------- /doc/results/017.png/017_1_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/017.png/017_1_crop.png -------------------------------------------------------------------------------- /doc/results/017.png/017_2_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/017.png/017_2_binary.png -------------------------------------------------------------------------------- /doc/results/017.png/017_3_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/doc/results/017.png/017_3_lines.png -------------------------------------------------------------------------------- /src/imgproc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/__init__.py -------------------------------------------------------------------------------- /src/imgproc/cpp/Binarization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/Binarization.cpp -------------------------------------------------------------------------------- /src/imgproc/cpp/Binarization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/Binarization.hpp -------------------------------------------------------------------------------- /src/imgproc/cpp/LineSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/LineSegmentation.cpp -------------------------------------------------------------------------------- /src/imgproc/cpp/LineSegmentation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/LineSegmentation.hpp -------------------------------------------------------------------------------- /src/imgproc/cpp/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/Scanner.cpp -------------------------------------------------------------------------------- /src/imgproc/cpp/Scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/Scanner.hpp -------------------------------------------------------------------------------- /src/imgproc/cpp/WordSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/WordSegmentation.cpp -------------------------------------------------------------------------------- /src/imgproc/cpp/WordSegmentation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/WordSegmentation.hpp -------------------------------------------------------------------------------- /src/imgproc/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/imgproc/cpp/main.cpp -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/text-segmentation/HEAD/src/main.py --------------------------------------------------------------------------------