Spaces:
Running
on
Zero
Running
on
Zero
share false
Browse files
app.py
CHANGED
@@ -950,11 +950,11 @@ with gr.Blocks() as demo:
|
|
950 |
with gr.Row():
|
951 |
# rate_slider = gr.Slider(
|
952 |
# minimum=1, maximum=16, value=1, step=1, label="Choose subsampling rate", interactive=False)
|
953 |
-
rate_radio = gr.Radio([1, 2, 4, 8, 16], value=
|
954 |
with gr.Row():
|
955 |
cmap_radio = gr.Radio(["gist_rainbow", "rainbow", "jet", "turbo", "bremm"], value="gist_rainbow", label="Colormap", interactive=False)
|
956 |
with gr.Row():
|
957 |
-
bkg_check = gr.Checkbox(value=
|
958 |
|
959 |
with gr.Row():
|
960 |
output_video = gr.Video(
|
@@ -1170,5 +1170,5 @@ with gr.Blocks() as demo:
|
|
1170 |
|
1171 |
|
1172 |
# demo.launch(show_api=False, show_error=True, debug=False, share=False)
|
1173 |
-
demo.launch(show_api=False, show_error=True, debug=False, share=True)
|
1174 |
-
|
|
|
950 |
with gr.Row():
|
951 |
# rate_slider = gr.Slider(
|
952 |
# minimum=1, maximum=16, value=1, step=1, label="Choose subsampling rate", interactive=False)
|
953 |
+
rate_radio = gr.Radio([1, 2, 4, 8, 16], value=2, label="Subsampling rate", interactive=False)
|
954 |
with gr.Row():
|
955 |
cmap_radio = gr.Radio(["gist_rainbow", "rainbow", "jet", "turbo", "bremm"], value="gist_rainbow", label="Colormap", interactive=False)
|
956 |
with gr.Row():
|
957 |
+
bkg_check = gr.Checkbox(value=False, label="Overlay tracks on video", interactive=False)
|
958 |
|
959 |
with gr.Row():
|
960 |
output_video = gr.Video(
|
|
|
1170 |
|
1171 |
|
1172 |
# demo.launch(show_api=False, show_error=True, debug=False, share=False)
|
1173 |
+
# demo.launch(show_api=False, show_error=True, debug=False, share=True)
|
1174 |
+
demo.launch(show_api=False, show_error=True, debug=False, share=False)
|