mouseland commited on
Commit
a3dc09f
·
verified ·
1 Parent(s): c6ecc58

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -134,11 +134,13 @@ with gr.Blocks(title = "Hello",
134
  output_image1 = gr.Image(label = "Output image", type = "numpy")
135
 
136
  send_btn = gr.Button("Run Cellpose-SAM")
137
- send_btn.click(fn=cellpose_segment, inputs=[input_image], outputs=[output_image1, output_image2, output_image3])
138
 
139
  with gr.Row():
140
  output_image2 = gr.Image(label = "Output image", type = "numpy")
141
  output_image3 = gr.Image(label = "Output image", type = "numpy")
 
 
 
142
 
143
 
144
 
 
134
  output_image1 = gr.Image(label = "Output image", type = "numpy")
135
 
136
  send_btn = gr.Button("Run Cellpose-SAM")
 
137
 
138
  with gr.Row():
139
  output_image2 = gr.Image(label = "Output image", type = "numpy")
140
  output_image3 = gr.Image(label = "Output image", type = "numpy")
141
+
142
+ send_btn.click(fn=cellpose_segment, inputs=[input_image], outputs=[output_image1, output_image2, output_image3])
143
+
144
 
145
 
146