Update app.py
Browse files
app.py
CHANGED
@@ -245,7 +245,14 @@ def main():
|
|
245 |
<span style="font-variant: small-caps; font-weight: bold;">Sam2Point</span>
|
246 |
</h1>
|
247 |
<h3 align="center"><span style="font-variant: small-caps; ">Segment Any 3D as Videos in Zero-shot and Promptable Manners
|
248 |
-
</span></h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
|
250 |
with gr.Blocks(
|
251 |
css="""
|
@@ -271,6 +278,7 @@ def main():
|
|
271 |
theme=gr.themes.Soft()
|
272 |
) as app:
|
273 |
gr.HTML(title)
|
|
|
274 |
with gr.Row():
|
275 |
with gr.Column(elem_id="col_container"):
|
276 |
sample_dropdown = gr.Dropdown(label="Select 3D Data Type", choices=samples, type="value")
|
|
|
245 |
<span style="font-variant: small-caps; font-weight: bold;">Sam2Point</span>
|
246 |
</h1>
|
247 |
<h3 align="center"><span style="font-variant: small-caps; ">Segment Any 3D as Videos in Zero-shot and Promptable Manners
|
248 |
+
</span></h3>
|
249 |
+
|
250 |
+
<div style="text-align: center;">
|
251 |
+
<div style="display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 1.25rem; flex-wrap: wrap;">
|
252 |
+
<a href="https://arxiv.org/submit/5810210" target="_blank">[Paper]</a>
|
253 |
+
<a href="https://github.com/ZiyuGuo99/SAM2Point" target="_blank">[Code]</a>
|
254 |
+
</div></div>
|
255 |
+
"""
|
256 |
|
257 |
with gr.Blocks(
|
258 |
css="""
|
|
|
278 |
theme=gr.themes.Soft()
|
279 |
) as app:
|
280 |
gr.HTML(title)
|
281 |
+
gr.Markdown("Select an example to start segmentation using SAM2Point. Custom prompts for segmentation will be supported soon.")
|
282 |
with gr.Row():
|
283 |
with gr.Column(elem_id="col_container"):
|
284 |
sample_dropdown = gr.Dropdown(label="Select 3D Data Type", choices=samples, type="value")
|