Merge in RR/cv-analysis from add_table_parsing_fixtures to master
Squashed commit of the following:
commit cfc89b421b61082c8e92e1971c9d0bf4490fa07e
Merge: a7ecb05 73c66a8
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Mon Jul 11 12:19:01 2022 +0200
Merge branch 'master' of ssh://git.iqser.com:2222/rr/cv-analysis into add_table_parsing_fixtures
commit a7ecb05b7d8327f0c7429180f63a380b61b06bc3
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Mon Jul 11 12:02:07 2022 +0200
refactor
commit 466f217e5a9ee5c54fd38c6acd28d54fc38ff9bb
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Mon Jul 11 10:24:14 2022 +0200
deleted unused imports and unused lines of code
commit c58955c8658d0631cdd1c24c8556d399e3fd9990
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Mon Jul 11 10:16:01 2022 +0200
black reformatted files
commit f8bcb10a00ff7f0da49b80c1609b17997411985a
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Tue Jul 5 15:15:00 2022 +0200
reformat files
commit 432e8a569fd70bd0745ce0549c2bfd2f2e907763
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Tue Jul 5 15:08:22 2022 +0200
added better test for generic pages with table WIP as thicker lines create inconsistent results.
added test for patchy tables which does not work yet
commit 2aac9ebf5c76bd963f8c136fe5dd4c2d7681b469
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Mon Jul 4 16:56:29 2022 +0200
added new fixtures for table_parsing_test.py
commit 37606cac0301b13e99be2c16d95867477f29e7c4
Author: llocarnini <lillian.locarnini@iqser.com>
Date: Fri Jul 1 16:02:44 2022 +0200
added separate file for table parsing fixtures, where fixtures for generic tables were added. WIP tests for generic table fixtures
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
import gzip
|
|
import io
|
|
|
|
import numpy as np
|
|
import pytest
|
|
from PIL import Image
|
|
from funcy import first
|
|
|
|
from cv_analysis.utils.structures import Rectangle
|
|
from incl.pyinfra.pyinfra.server.packing import bytes_to_string
|
|
|
|
|
|
@pytest.fixture
|
|
def random_image_as_bytes_and_compressed(random_image):
|
|
image = Image.fromarray(random_image.astype("uint8")).convert("RGBA")
|
|
img_byte_arr = io.BytesIO()
|
|
image.save(img_byte_arr, format="PNG")
|
|
return gzip.compress(img_byte_arr.getvalue())
|
|
|
|
|
|
@pytest.fixture
|
|
def random_image_metadata_package(random_image_as_bytes_and_compressed):
|
|
data = bytes_to_string(random_image_as_bytes_and_compressed)
|
|
return [
|
|
{
|
|
"data": data,
|
|
"metadata": {
|
|
"page_info": {"width": 1000, "height": 2000, "rotation": 90},
|
|
"image_info": {"dpi": 200},
|
|
},
|
|
}
|
|
]
|
|
|
|
|
|
@pytest.fixture
|
|
def expected_analyse_metadata(operation, random_image_metadata_package, image_size):
|
|
metadata = first(random_image_metadata_package)
|
|
metadata = metadata["metadata"]
|
|
|
|
if image_size == (200, 200):
|
|
result_metadata = {"cells": [{"height": 72.0, "width": 71.99999999999999, "x": 0.0, "y": 1928.0}]}
|
|
elif image_size == (500, 500):
|
|
result_metadata = {"cells": [{"height": 180.0, "width": 179.99999999999997, "x": 0.0, "y": 1820.0}]}
|
|
elif image_size == (800, 800):
|
|
result_metadata = {"cells": [{"height": 288.0, "width": 287.99999999999994, "x": 0.0, "y": 1712.0}]}
|
|
else:
|
|
result_metadata = {}
|
|
|
|
if operation == "mock":
|
|
|
|
return {**metadata, **result_metadata}
|
|
|
|
|
|
@pytest.fixture
|
|
def analysis_fn_mock(operation):
|
|
def analyse_mock(image: np.ndarray):
|
|
return [Rectangle.from_xywh((0, 0, image.shape[1], image.shape[0]))]
|
|
|
|
return analyse_mock
|