Update app.py
Browse files
app.py
CHANGED
@@ -720,10 +720,11 @@ with gr.Blocks(css=css, js=js, head=head) as demo:
|
|
720 |
{"lat": 50.073823157821664, "lng": 14.437124189538856, "heading": 152.95769, "pitch": 4.233024999999998}
|
721 |
]"""
|
722 |
coords = gr.Textbox(elem_id="coords", value=example_coords, label="Coordinates", interactive=False)
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
|
|
727 |
|
728 |
|
729 |
def on_submit(uploaded_video,model_type,blur_in,boffset,bsize,coordinates):
|
|
|
720 |
{"lat": 50.073823157821664, "lng": 14.437124189538856, "heading": 152.95769, "pitch": 4.233024999999998}
|
721 |
]"""
|
722 |
coords = gr.Textbox(elem_id="coords", value=example_coords, label="Coordinates", interactive=False)
|
723 |
+
|
724 |
+
model3d = gr.HTML(value="""
|
725 |
+
<a style='color:white;font-weight:bold' href='https://freeali.se/freealise/transparent_video/' target='_blank'>Open renderer in new tab and upload your video there</a>
|
726 |
+
""")
|
727 |
+
input_json.input(show_json, inputs=[input_json], outputs=[processed_video, processed_zip, output_frame, output_mask, output_depth, coords])
|
728 |
|
729 |
|
730 |
def on_submit(uploaded_video,model_type,blur_in,boffset,bsize,coordinates):
|