mouseland commited on
Commit
93bb682
·
verified ·
1 Parent(s): 93bdd17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -258,7 +258,7 @@ def update_image(filepath):
258
  for f in filepath:
259
  print(f)
260
 
261
- return filepath[-1] , None, None
262
 
263
 
264
  def update_button(filepath):
@@ -269,7 +269,7 @@ def update_button(filepath):
269
  #b1 = gr.DownloadButton("Download masks as TIFF", visible=False)
270
  #b2 = gr.DownloadButton("Download outline image as PNG", visible=False)
271
 
272
- return [filepath] , None, None
273
 
274
  with gr.Blocks(title = "Hello",
275
  css=".gradio-container {background:purple;}") as demo:
@@ -298,9 +298,9 @@ with gr.Blocks(title = "Hello",
298
  down_btn2 = gr.DownloadButton("Download outlines (PNG)", visible=False)
299
 
300
  with gr.Column(scale=2):
301
- img_outlines = gr.Image(label = "Outlines", type = "filepath", format = 'png', visible=False) #, width = "50vw", height = "20vw")
302
  #img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
303
- flows = gr.Image(label = "Cellpose flows", type = "filepath", format = 'png', visible=False) #, width = "50vw", height = "20vw")
304
 
305
 
306
  sample_list = []
 
258
  for f in filepath:
259
  print(f)
260
 
261
+ return filepath[-1] , [], []
262
 
263
 
264
  def update_button(filepath):
 
269
  #b1 = gr.DownloadButton("Download masks as TIFF", visible=False)
270
  #b2 = gr.DownloadButton("Download outline image as PNG", visible=False)
271
 
272
+ return [filepath] , [], []
273
 
274
  with gr.Blocks(title = "Hello",
275
  css=".gradio-container {background:purple;}") as demo:
 
298
  down_btn2 = gr.DownloadButton("Download outlines (PNG)", visible=False)
299
 
300
  with gr.Column(scale=2):
301
+ img_outlines = gr.Image(label = "Outlines", type = "filepath", format = 'png') #, width = "50vw", height = "20vw")
302
  #img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
303
+ flows = gr.Image(label = "Cellpose flows", type = "filepath", format = 'png') #, width = "50vw", height = "20vw")
304
 
305
 
306
  sample_list = []