aagoluoglu commited on
Commit
bf00ab1
·
verified ·
1 Parent(s): 6d94ad3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, extent=(0, width, height, 0)) # Setting extent to match original image dimensions
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):