Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ def show_mask(mask, ax, random_color=False):
|
|
104 |
color = np.array([30/255, 144/255, 255/255, 0.6])
|
105 |
h, w = mask.shape[-2:]
|
106 |
mask_image = mask.reshape(h, w, 1) * color.reshape(1, 1, -1)
|
107 |
-
ax.imshow(mask_image
|
108 |
|
109 |
### SERVER ###
|
110 |
def server(input: Inputs, output: Outputs, session: Session):
|
|
|
104 |
color = np.array([30/255, 144/255, 255/255, 0.6])
|
105 |
h, w = mask.shape[-2:]
|
106 |
mask_image = mask.reshape(h, w, 1) * color.reshape(1, 1, -1)
|
107 |
+
ax.imshow(mask_image)
|
108 |
|
109 |
### SERVER ###
|
110 |
def server(input: Inputs, output: Outputs, session: Session):
|