Update app.py
Browse files
app.py
CHANGED
|
@@ -287,17 +287,17 @@ with gr.Blocks(title = "Hello",
|
|
| 287 |
down_btn = gr.DownloadButton("Download masks (TIF)", visible=False)
|
| 288 |
down_btn2 = gr.DownloadButton("Download outlines (PNG)", visible=False)
|
| 289 |
|
| 290 |
-
with gr.Row():
|
| 291 |
-
gr.HTML("""<a style="color:white; font-size:14pt;" href="https://github.com/MouseLand/cellpose" target="_blank">Github page</a>""")
|
| 292 |
-
gr.HTML("""<a style="color:white; font-size:14pt;" href="https://github.com/MouseLand/cellpose" target="_blank">Paper</a>""")
|
| 293 |
-
gr.HTML("""<h4 style="color:white;">Install Cellpose-SAM locally for full functionality. </h4>""")
|
| 294 |
|
| 295 |
-
|
| 296 |
with gr.Column(scale=2):
|
| 297 |
img_outlines = gr.Image(label = "Outlines", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 298 |
img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 299 |
flows = gr.Image(label = "Cellpose flows", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
|
| 302 |
|
| 303 |
sample_list = []
|
|
|
|
| 287 |
down_btn = gr.DownloadButton("Download masks (TIF)", visible=False)
|
| 288 |
down_btn2 = gr.DownloadButton("Download outlines (PNG)", visible=False)
|
| 289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 290 |
|
|
|
|
| 291 |
with gr.Column(scale=2):
|
| 292 |
img_outlines = gr.Image(label = "Outlines", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 293 |
img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 294 |
flows = gr.Image(label = "Cellpose flows", type = "pil", format = 'png') #, width = "50vw", height = "20vw")
|
| 295 |
|
| 296 |
+
with gr.Row():
|
| 297 |
+
gr.HTML("""<a style="color:white; font-size:14pt;" href="https://github.com/MouseLand/cellpose" target="_blank">Github page</a>""")
|
| 298 |
+
gr.HTML("""<a style="color:white; font-size:14pt;" href="https://github.com/MouseLand/cellpose" target="_blank">Paper</a>""")
|
| 299 |
+
gr.HTML("""<h4 style="color:white;">Install Cellpose-SAM locally for full functionality. </h4>""")
|
| 300 |
+
|
| 301 |
|
| 302 |
|
| 303 |
sample_list = []
|