Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -54,6 +54,16 @@ def infer_headswap(source, target):
|
|
54 |
def process_img(img, target=False):
|
55 |
full_frames = np.array(img)[:, :, ::-1]
|
56 |
dets = app.get(full_frames)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
kps = dets[0]['kps']
|
58 |
wide = wide_crop_face(full_frames, kps, return_M=target)
|
59 |
if target:
|
|
|
54 |
def process_img(img, target=False):
|
55 |
full_frames = np.array(img)[:, :, ::-1]
|
56 |
dets = app.get(full_frames)
|
57 |
+
if len(dets) == 0:
|
58 |
+
pad_top, pad_bottom, pad_left, pad_right = (
|
59 |
+
full_frames.shape[0] // 2, full_frames.shape[0] // 2,
|
60 |
+
full_frames.shape[1] // 2, full_frames.shape[1] // 2
|
61 |
+
)
|
62 |
+
full_frames = cv2.copyMakeBorder(
|
63 |
+
full_frames, pad_top, pad_bottom, pad_left, pad_right, cv2.BORDER_CONSTANT, value=0)
|
64 |
+
dets = app.get(full_frames)
|
65 |
+
if len(dets) == 0:
|
66 |
+
raise ValueError(f"no head on {'target' if target else 'source'} image")
|
67 |
kps = dets[0]['kps']
|
68 |
wide = wide_crop_face(full_frames, kps, return_M=target)
|
69 |
if target:
|