зеркало из https://github.com/mozilla/iris.git
WIP: change size of background rect on debug image
This commit is contained in:
Родитель
56735fe92e
Коммит
9fd3e55aa9
|
@ -72,10 +72,16 @@ def save_debug_image(needle, haystack, locations):
|
|||
d_image.paste(gray_img)
|
||||
d_image.paste(search_for_image, (0, v_align_pos))
|
||||
d_array = np.array(d_image)
|
||||
|
||||
# Python: cv2.getTextSize(text, fontFace, fontScale, thickness) → retval, baseLine¶
|
||||
text_size = cv2.getTextSize(not_found_txt, cv2.FONT_HERSHEY_TRIPLEX, 0.5, 1)
|
||||
logger.error(text_size)
|
||||
|
||||
cv2.rectangle(
|
||||
d_array,
|
||||
(w, v_align_pos),
|
||||
(haystack.width, v_align_pos + h),
|
||||
# (haystack.width, v_align_pos + h),
|
||||
(haystack.width, v_align_pos + 400),
|
||||
(255, 255, 255),
|
||||
cv2.FILLED,
|
||||
)
|
||||
|
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 139 KiB |
|
@ -0,0 +1,18 @@
|
|||
import sys
|
||||
|
||||
import pytest
|
||||
|
||||
from moziris.base.testcase import BaseTest
|
||||
from moziris.api import *
|
||||
|
||||
|
||||
class Test(BaseTest):
|
||||
@pytest.mark.details(
|
||||
meta="Sample Test experiment",
|
||||
locale=["en-US", "es-ES", "ro"],
|
||||
description="Working with debug images.",
|
||||
custom_value="ojo",
|
||||
)
|
||||
def run(self):
|
||||
result = exists(Pattern("eyes.png"))
|
||||
assert result, "Eyes found"
|
Загрузка…
Ссылка в новой задаче