Merge in RR/cv-analysis from new_pyinfra to master
Squashed commit of the following:
commit f7a01a90aad1c402ac537de5bdf15df628ad54df
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Wed Jul 27 10:40:59 2022 +0200
fix typo
commit ff4d549fac5b612c2d391ae85823c5eca1e91916
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Wed Jul 27 10:34:04 2022 +0200
adjust build scripts for new pyinfra
commit ecd70f60d46406d8b6cc7f36a1533d706c917ca8
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Wed Jul 27 09:42:55 2022 +0200
simplify logging by using default configurations
commit 20193c14c940eed2b0a7a72058167e26064119d0
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date: Tue Jul 26 17:16:57 2022 +0200
tidy-up, refactor config logic to not dependent on external files
commit d8069cd4d404a570bb04a04278161669d1c83332
Author: Isaac Riley <Isaac.Riley@iqser.com>
Date: Tue Jul 26 15:14:59 2022 +0200
update pyinfra
commit c3bc11037cca9baf016043ab997c566f5b4a2586
Author: Isaac Riley <Isaac.Riley@iqser.com>
Date: Tue Jul 26 15:09:14 2022 +0200
repair tests
commit 6f4e4f2863ee16ae056c1d432f663858c5f10221
Author: Isaac Riley <Isaac.Riley@iqser.com>
Date: Tue Jul 26 14:52:38 2022 +0200
updated server logic to work with new pyinfra; update scripts for pyinfra as submodule
commit 2a18dba81de5ee84d0bdf0e77f478693e8d8aef4
Author: Isaac Riley <Isaac.Riley@iqser.com>
Date: Tue Jul 26 14:10:41 2022 +0200
formatting
commit d87ce9328de9aa2341228af9b24473d5e583504e
Author: Isaac Riley <Isaac.Riley@iqser.com>
Date: Tue Jul 26 14:10:11 2022 +0200
make server logic compatible with new pyinfra
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
import gzip
|
|
import io
|
|
|
|
import numpy as np
|
|
import cv2
|
|
import pytest
|
|
from funcy import first
|
|
|
|
from cv_analysis.utils.structures import Rectangle
|
|
|
|
|
|
@pytest.fixture
|
|
def random_image_as_bytes_and_compressed(random_image):
|
|
image = cv2.cvtColor(random_image.astype("uint8"), cv2.COLOR_RGB2RGBA)
|
|
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 = random_image_as_bytes_and_compressed.decode()
|
|
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
|