From fed6f03c7fa503a0830e370041c71c2499993ea4 Mon Sep 17 00:00:00 2001 From: slashtechno <77907286+slashtechno@users.noreply.github.com> Date: Sun, 18 Dec 2022 13:15:43 -0600 Subject: [PATCH] Removed `face found at ...` notice It was originally for debugging --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0f2b78f..6ccfb43 100644 --- a/main.py +++ b/main.py @@ -174,7 +174,7 @@ while True: # Iterate over each face found in the frame to draw a box around it # Zip is used to iterate over two lists at the same time for (top, right, bottom, left), name in zip(face_locations, face_names): - print(f"Face found at {top}, {right}, {bottom}, {left} with name {name}") + # print(f"Face found at {top}, {right}, {bottom}, {left} with name {name}") # Scale back up face locations since the frame we detected in was scaled to 1/4 size top = int(top * (VIEW_SCALE / RUN_SCALE)) right = int(right * (VIEW_SCALE / RUN_SCALE))