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": {},