Removed `face found at ...` notice

It was originally for debugging
This commit is contained in:
slashtechno 2022-12-18 13:15:43 -06:00
parent 2a809836c0
commit fed6f03c7f
Signed by: slashtechno
GPG Key ID: 8EC1D9D9286C2B17
1 changed files with 1 additions and 1 deletions

View File

@ -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))