Update app.py
Browse files
app.py
CHANGED
|
@@ -258,7 +258,7 @@ def update_image(filepath):
|
|
| 258 |
for f in filepath:
|
| 259 |
print(f)
|
| 260 |
|
| 261 |
-
return filepath[-1]
|
| 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]
|
| 273 |
|
| 274 |
with gr.Blocks(title = "Hello",
|
| 275 |
css=".gradio-container {background:purple;}") as demo:
|
|
@@ -306,10 +306,10 @@ with gr.Blocks(title = "Hello",
|
|
| 306 |
sample_list = []
|
| 307 |
for j in range(23):
|
| 308 |
sample_list.append("samples/img%0.2d.png"%j)
|
| 309 |
-
gr.Examples(sample_list, fn = update_button, inputs=input_image, outputs = [up_btn
|
| 310 |
|
| 311 |
-
input_image.upload(update_button, input_image, [up_btn
|
| 312 |
-
up_btn.upload(update_image, up_btn, [input_image
|
| 313 |
send_btn.click(cellpose_segment, [up_btn, resize], [img_outlines, flows, down_btn, down_btn2])
|
| 314 |
|
| 315 |
#down_btn.click(download_function, None, [down_btn, down_btn2])
|
|
|
|
| 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:
|
|
|
|
| 306 |
sample_list = []
|
| 307 |
for j in range(23):
|
| 308 |
sample_list.append("samples/img%0.2d.png"%j)
|
| 309 |
+
gr.Examples(sample_list, fn = update_button, inputs=input_image, outputs = [up_btn], examples_per_page=25, label = "Click on an example to try it")
|
| 310 |
|
| 311 |
+
input_image.upload(update_button, input_image, [up_btn])
|
| 312 |
+
up_btn.upload(update_image, up_btn, [input_image])
|
| 313 |
send_btn.click(cellpose_segment, [up_btn, resize], [img_outlines, flows, down_btn, down_btn2])
|
| 314 |
|
| 315 |
#down_btn.click(download_function, None, [down_btn, down_btn2])
|