Spaces:
Running
Running
Update avatar.py
Browse files
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 |
-
|
206 |
-
|
207 |
-
|
|
|
|
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
-
|
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 là None hoặc không đủ phần tử
|
206 |
+
if rect is None or len(rect) < 4:
|
207 |
+
# Bỏ qua frame này và 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]))
|