Update app.py
Browse files
app.py
CHANGED
@@ -197,11 +197,14 @@ if __name__ == "__main__":
|
|
197 |
_, mask_cv = cv2.threshold(mask_cv, 128, 255, cv2.THRESH_BINARY)
|
198 |
|
199 |
# Center for seamlessClone
|
|
|
200 |
center = (target_size[0] // 2, target_size[1] // 2)
|
201 |
|
202 |
|
203 |
img_C = cv2.seamlessClone(dict, img_cv, mask_cv, center, cv2.NORMAL_CLONE)
|
204 |
img_C = cv2.cvtColor(img_C, cv2.COLOR_BGR2RGB)
|
|
|
|
|
205 |
|
206 |
|
207 |
return img_C, mask_gray
|
|
|
197 |
_, mask_cv = cv2.threshold(mask_cv, 128, 255, cv2.THRESH_BINARY)
|
198 |
|
199 |
# Center for seamlessClone
|
200 |
+
target_size = (dict.shape[1], dict.shape[0])
|
201 |
center = (target_size[0] // 2, target_size[1] // 2)
|
202 |
|
203 |
|
204 |
img_C = cv2.seamlessClone(dict, img_cv, mask_cv, center, cv2.NORMAL_CLONE)
|
205 |
img_C = cv2.cvtColor(img_C, cv2.COLOR_BGR2RGB)
|
206 |
+
img_C = img_C.astype(np.uint8)
|
207 |
+
img_C = Image.fromarray(img_C, mode="RGB")
|
208 |
|
209 |
|
210 |
return img_C, mask_gray
|