Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -298,12 +298,14 @@ with gr.Blocks(title="Solar CME Detection") as demo:
|
|
298 |
with gr.Column():
|
299 |
gr.Markdown("### Outputs")
|
300 |
report = gr.Textbox(label="Analysis Report", lines=10)
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
preview = gr.Gallery(label="Input Preview (All Frames)")
|
302 |
total_images = gr.Textbox(label="Total Images Available in Directory", value="0")
|
303 |
-
with gr.Row():
|
304 |
-
gallery = gr.Gallery(label="Frames with Detected Circles (Green: Detected, Orange: Growing Series)")
|
305 |
-
gif_output = gr.File(label="Download Resulting GIF")
|
306 |
-
|
307 |
# Fetch button action
|
308 |
fetch_button.click(
|
309 |
fn=handle_fetch,
|
|
|
298 |
with gr.Column():
|
299 |
gr.Markdown("### Outputs")
|
300 |
report = gr.Textbox(label="Analysis Report", lines=10)
|
301 |
+
|
302 |
+
with gr.Row():
|
303 |
+
with gr.Column():
|
304 |
+
gallery = gr.Gallery(label="Frames with Detected Circles (Green: Detected, Orange: Growing Series)")
|
305 |
+
gif_output = gr.File(label="Download Resulting GIF")
|
306 |
+
with gr.Column():
|
307 |
preview = gr.Gallery(label="Input Preview (All Frames)")
|
308 |
total_images = gr.Textbox(label="Total Images Available in Directory", value="0")
|
|
|
|
|
|
|
|
|
309 |
# Fetch button action
|
310 |
fetch_button.click(
|
311 |
fn=handle_fetch,
|