Christen Millerdurai
commited on
Commit
·
ea732b1
1
Parent(s):
c79e35d
fixed typo and added documentation
Browse files
app.py
CHANGED
|
@@ -132,7 +132,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 132 |
"""
|
| 133 |
<div align="center">
|
| 134 |
<h4>
|
| 135 |
-
Note: The model's performance may be suboptimal as the
|
| 136 |
</h4>
|
| 137 |
</div>
|
| 138 |
"""
|
|
@@ -163,6 +163,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 163 |
# gr.HTML(title)
|
| 164 |
with gr.Row():
|
| 165 |
with gr.Column():
|
|
|
|
| 166 |
video_inp = gr.Video(label="Video source", elem_id="input-vid")
|
| 167 |
with gr.Row():
|
| 168 |
trim_in = gr.Slider(label="Cut video at (s)", minimum=1, maximum=5, step=1, value=1)
|
|
|
|
| 132 |
"""
|
| 133 |
<div align="center">
|
| 134 |
<h4>
|
| 135 |
+
Note: The model's performance may be suboptimal as the event stream derived from the input video inadequately reflects the characteristics of an event stream generated by an event camera. 🚫📹
|
| 136 |
</h4>
|
| 137 |
</div>
|
| 138 |
"""
|
|
|
|
| 163 |
# gr.HTML(title)
|
| 164 |
with gr.Row():
|
| 165 |
with gr.Column():
|
| 166 |
+
gr.Markdown("<h3>Input: RGB video. We convert the video into an event stream.✨📹</h3>")
|
| 167 |
video_inp = gr.Video(label="Video source", elem_id="input-vid")
|
| 168 |
with gr.Row():
|
| 169 |
trim_in = gr.Slider(label="Cut video at (s)", minimum=1, maximum=5, step=1, value=1)
|