Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -47,9 +47,11 @@ def visualize_model_output(prediction, img):
|
|
47 |
|
48 |
print(output,'shapes')
|
49 |
print(img,'shapes2')
|
|
|
|
|
50 |
|
51 |
added_image = cv2.addWeighted(img,1,output,.1,0)
|
52 |
-
|
53 |
return added_image
|
54 |
|
55 |
|
|
|
47 |
|
48 |
print(output,'shapes')
|
49 |
print(img,'shapes2')
|
50 |
+
|
51 |
+
|
52 |
|
53 |
added_image = cv2.addWeighted(img,1,output,.1,0)
|
54 |
+
print(added_image)
|
55 |
return added_image
|
56 |
|
57 |
|