From ce77f1ba33565ac8c64c0339c38e5476d633da95 Mon Sep 17 00:00:00 2001 From: SimLeek Date: Mon, 13 Apr 2020 20:55:05 -0700 Subject: [PATCH] cv version is set for raspberry pi --- examples/looping/no_display.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/looping/no_display.py b/examples/looping/no_display.py index 7e17d6b..a25a04e 100644 --- a/examples/looping/no_display.py +++ b/examples/looping/no_display.py @@ -8,7 +8,7 @@ def profile_reading(total_seconds=5): t_init = t01 = time.time() times = [] started = False - for up in display(0, size=(9999, 9999)): + for up in display(1, size=(1, 1)): if up: t1 = time.time() if started: diff --git a/pyproject.toml b/pyproject.toml index f76fe6d..12b9781 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ repository = "https://github.com/simleek/displayarray" [tool.poetry.dependencies] python = "^3.6" -opencv_python = "4.1.1.26" +opencv_python = "^4.1.1.26" docopt = "0.6.2" numpy = "1.16.1" localpubsub = "0.0.4"