Update app.py
Browse files
app.py
CHANGED
|
@@ -70,7 +70,7 @@ def predict(pil_img):
|
|
| 70 |
alpha=0.6
|
| 71 |
)
|
| 72 |
|
| 73 |
-
out_img = v.get_image()[:, :, ::-1]
|
| 74 |
return Image.fromarray(out_img)
|
| 75 |
|
| 76 |
gr.Interface(
|
|
|
|
| 70 |
alpha=0.6
|
| 71 |
)
|
| 72 |
|
| 73 |
+
out_img = v.output.get_image()[:, :, ::-1]
|
| 74 |
return Image.fromarray(out_img)
|
| 75 |
|
| 76 |
gr.Interface(
|