From f7f5db9f41533434e72c09d6f7f16332d5d91fc4 Mon Sep 17 00:00:00 2001 From: slashtechno <77907286+slashtechno@users.noreply.github.com> Date: Fri, 16 Feb 2024 13:17:03 -0600 Subject: [PATCH] Updated TODO comments --- wyzely_detect/__main__.py | 1 - wyzely_detect/utils/utils.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/wyzely_detect/__main__.py b/wyzely_detect/__main__.py index 2512386..f516528 100644 --- a/wyzely_detect/__main__.py +++ b/wyzely_detect/__main__.py @@ -126,7 +126,6 @@ def main(): ) ) # Display the resulting frame - # TODO: When multi-camera support is added, this needs to be changed to allow all feeds if not args.no_display: for i, frame_to_show in enumerate(frames_to_show): cv2.imshow(f"Video {i}", frame_to_show) diff --git a/wyzely_detect/utils/utils.py b/wyzely_detect/utils/utils.py index 4b45577..1414bbb 100644 --- a/wyzely_detect/utils/utils.py +++ b/wyzely_detect/utils/utils.py @@ -12,7 +12,7 @@ from . import notify # noqa: E402 first_face_try = True -# TODO: When multi-camera support is added, this will need to be changed so that each camera has its own dict +# TODO: When multi-camera support is ~~added~~ improved, this will need to be changed so that each camera has its own dict objects_and_peoples = { "objects": {}, "peoples": {},