TDN-M commited on
Commit
4766c2d
·
verified ·
1 Parent(s): ddf1f82

Update avatar.py

Browse files
Files changed (1) hide show
  1. avatar.py +17 -8
avatar.py CHANGED
@@ -202,16 +202,25 @@ class Avatar:
202
  face_detect_results = []
203
  pady1, pady2, padx1, padx2 = [0, 10, 0, 0]
204
  for rect, image in zip(predictions, images):
205
- if rect is None:
206
- cv2.imwrite('temp_faulty_frame.jpg', image) # check this frame where the face was not detected.
207
- raise ValueError('Face not detected! Ensure the video contains a face in all the frames.')
 
 
208
 
209
- y1 = max(0, rect[1] - pady1)
210
- y2 = min(image.shape[0], rect[3] + pady2)
211
- x1 = max(0, rect[0] - padx1)
212
- x2 = min(image.shape[1], rect[2] + padx2)
 
 
 
 
 
 
 
213
 
214
- face_detect_results.append([x1, y1, x2, y2])
215
  # print("\n")
216
  # print("face_detect_results length = " + str(len(face_detect_results)))
217
  # print("face_detect_results[2]="+str(face_detect_results[2]))
 
202
  face_detect_results = []
203
  pady1, pady2, padx1, padx2 = [0, 10, 0, 0]
204
  for rect, image in zip(predictions, images):
205
+ # Kiểm tra nếu rect None hoặc không đủ phần tử
206
+ if rect is None or len(rect) < 4:
207
+ # Bỏ qua frame này tiếp tục với frame tiếp theo
208
+ face_detect_results.append(None)
209
+ continue
210
 
211
+ try:
212
+ y1 = max(0, rect[1] - pady1)
213
+ y2 = min(image.shape[0], rect[3] + pady2)
214
+ x1 = max(0, rect[0] - padx1)
215
+ x2 = min(image.shape[1], rect[2] + padx2)
216
+
217
+ face_detect_results.append([x1, y1, x2, y2])
218
+ except (IndexError, TypeError) as e:
219
+ print(f"Error processing face detection result: {e}")
220
+ face_detect_results.append(None)
221
+ continue
222
 
223
+ return face_detect_results
224
  # print("\n")
225
  # print("face_detect_results length = " + str(len(face_detect_results)))
226
  # print("face_detect_results[2]="+str(face_detect_results[2]))