nikshep01 commited on
Commit
f52125b
·
verified ·
1 Parent(s): 7d7b57c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -77,6 +77,7 @@ if file_name is not None:
77
  recognized_names.append(name)
78
 
79
  # Draw rectangle around the face
 
80
  y1, x2, y2, x1 = faceLoc
81
  y1, x2, y2, x1 = (y1 * 4), (x2 * 4), (y2 * 4) ,(x1 * 4)
82
  image = image.copy()
 
77
  recognized_names.append(name)
78
 
79
  # Draw rectangle around the face
80
+ for faceLoc, name in zip(facesCurFrame, recognized_names):
81
  y1, x2, y2, x1 = faceLoc
82
  y1, x2, y2, x1 = (y1 * 4), (x2 * 4), (y2 * 4) ,(x1 * 4)
83
  image = image.copy()