OCRmyPDF/tests/test_preprocessing.py

182 lines
5.3 KiB
Python
Raw Normal View History

2019-12-09 15:52:38 -08:00
# © 2019 James R. Barlow: github.com/jbarlow83
#
# This file is part of OCRmyPDF.
#
# OCRmyPDF is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OCRmyPDF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OCRmyPDF. If not, see <http://www.gnu.org/licenses/>.
from math import isclose
import pytest
from PIL import Image
from ocrmypdf.exec import ghostscript
2020-04-24 04:12:05 -07:00
from ocrmypdf.helpers import Resolution
2019-12-09 15:52:38 -08:00
from ocrmypdf.leptonica import Pix
from ocrmypdf.pdfinfo import PdfInfo
# pytest.helpers is dynamic
# pylint: disable=no-member,redefined-outer-name
check_ocrmypdf = pytest.helpers.check_ocrmypdf
run_ocrmypdf = pytest.helpers.run_ocrmypdf
run_ocrmypdf_api = pytest.helpers.run_ocrmypdf_api
spoof = pytest.helpers.spoof
RENDERERS = ['hocr', 'sandwich']
2020-06-01 03:06:40 -07:00
def test_deskew(resources, outdir):
2019-12-09 15:52:38 -08:00
# Run with deskew
deskewed_pdf = check_ocrmypdf(
2020-06-01 03:06:40 -07:00
resources / 'skew.pdf',
outdir / 'skew.pdf',
'-d',
'--plugin',
'tests/plugins/tesseract_noop.py',
2019-12-09 15:52:38 -08:00
)
# Now render as an image again and use Leptonica to find the skew angle
# to confirm that it was deskewed
deskewed_png = outdir / 'deskewed.png'
ghostscript.rasterize_pdf(
2020-04-24 04:12:05 -07:00
deskewed_pdf,
deskewed_png,
raster_device='pngmono',
raster_dpi=Resolution(150, 150),
pageno=1,
2019-12-09 15:52:38 -08:00
)
pix = Pix.open(deskewed_png)
skew_angle, _skew_confidence = pix.find_skew()
print(skew_angle)
assert -0.5 < skew_angle < 0.5, "Deskewing failed"
2020-06-01 03:06:40 -07:00
def test_remove_background(resources, outdir):
2019-12-09 15:52:38 -08:00
# Ensure the input image does not contain pure white/black
with Image.open(resources / 'congress.jpg') as im:
assert im.getextrema() != ((0, 255), (0, 255), (0, 255))
output_pdf = check_ocrmypdf(
resources / 'congress.jpg',
outdir / 'test_remove_bg.pdf',
'--remove-background',
'--image-dpi',
'150',
2020-06-01 03:06:40 -07:00
'--plugin',
'tests/plugins/tesseract_noop.py',
2019-12-09 15:52:38 -08:00
)
output_png = outdir / 'remove_bg.png'
ghostscript.rasterize_pdf(
2020-04-24 04:12:05 -07:00
output_pdf,
output_png,
raster_device='png16m',
raster_dpi=Resolution(100, 100),
pageno=1,
2019-12-09 15:52:38 -08:00
)
# The output image should contain pure white and black
with Image.open(output_png) as im:
assert im.getextrema() == ((0, 255), (0, 255), (0, 255))
# This will run 5 * 2 * 2 = 20 test cases
@pytest.mark.parametrize(
"pdf", ['palette.pdf', 'cmyk.pdf', 'ccitt.pdf', 'jbig2.pdf', 'lichtenstein.pdf']
)
@pytest.mark.parametrize("renderer", ['sandwich', 'hocr'])
@pytest.mark.parametrize("output_type", ['pdf', 'pdfa'])
def test_exotic_image(
spoof_tesseract_cache, pdf, renderer, output_type, resources, outdir
):
outfile = outdir / f'test_{pdf}_{renderer}.pdf'
check_ocrmypdf(
resources / pdf,
outfile,
'-dc' if pytest.helpers.have_unpaper() else '-d',
'-v',
'1',
'--output-type',
output_type,
'--sidecar',
'--skip-text',
'--pdf-renderer',
renderer,
env=spoof_tesseract_cache,
)
assert outfile.with_suffix('.pdf.txt').exists()
@pytest.mark.parametrize('renderer', RENDERERS)
def test_non_square_resolution(renderer, spoof_tesseract_cache, resources, outpdf):
# Confirm input image is non-square resolution
in_pageinfo = PdfInfo(resources / 'aspect.pdf')
2020-04-24 04:12:05 -07:00
assert in_pageinfo[0].dpi.x != in_pageinfo[0].dpi.y
2019-12-09 15:52:38 -08:00
check_ocrmypdf(
resources / 'aspect.pdf',
outpdf,
'--pdf-renderer',
renderer,
env=spoof_tesseract_cache,
)
out_pageinfo = PdfInfo(outpdf)
# Confirm resolution was kept the same
2020-04-24 04:12:05 -07:00
assert in_pageinfo[0].dpi == out_pageinfo[0].dpi
2019-12-09 15:52:38 -08:00
@pytest.mark.parametrize('renderer', RENDERERS)
def test_convert_to_square_resolution(
renderer, spoof_tesseract_cache, resources, outpdf
):
# Confirm input image is non-square resolution
in_pageinfo = PdfInfo(resources / 'aspect.pdf')
2020-04-24 04:12:05 -07:00
assert in_pageinfo[0].dpi.x != in_pageinfo[0].dpi.y
2019-12-09 15:52:38 -08:00
# --force-ocr requires means forced conversion to square resolution
check_ocrmypdf(
resources / 'aspect.pdf',
outpdf,
'--force-ocr',
'--pdf-renderer',
renderer,
env=spoof_tesseract_cache,
)
out_pageinfo = PdfInfo(outpdf)
in_p0, out_p0 = in_pageinfo[0], out_pageinfo[0]
# Resolution show now be equal
2020-04-24 04:12:05 -07:00
assert out_p0.dpi.x == out_p0.dpi.y
2019-12-09 15:52:38 -08:00
# Page size should match input page size
assert isclose(in_p0.width_inches, out_p0.width_inches)
assert isclose(in_p0.height_inches, out_p0.height_inches)
# Because we rasterized the page to produce a new image, it should occupy
# the entire page
2020-04-24 04:12:05 -07:00
out_im_w = out_p0.images[0].width / out_p0.images[0].dpi.x
out_im_h = out_p0.images[0].height / out_p0.images[0].dpi.y
2019-12-09 15:52:38 -08:00
assert isclose(out_p0.width_inches, out_im_w)
assert isclose(out_p0.height_inches, out_im_h)