Spaces:
Running
on
Zero
Running
on
Zero
demo new examples
Browse files
app.py
CHANGED
|
@@ -192,19 +192,13 @@ def demo_run(image: str,
|
|
| 192 |
|
| 193 |
markdown_description = """
|
| 194 |
# SceneDINO Demo
|
| 195 |
-
|
| 196 |
[Paper](https://arxiv.org/abs/xxxx.xxxxx) | [Code](https://github.com/tum-vision/scenedino) | [Project Page](https://visinf.github.io/scenedino/)
|
| 197 |
|
| 198 |
Upload a single image to infer 3D geometry and semantics with **SceneDINO**. You can find some example images below.
|
| 199 |
-
|
| 200 |
<span style="color:orange">⚠️ NOTE: We assume the intrinsic camera matrix of KITTI-360, images are cropped and rescaled to 192x640. Further note our demo's voxel limit of 5M. </span>
|
| 201 |
"""
|
| 202 |
|
| 203 |
-
# - **Feature PCA**
|
| 204 |
-
# We visualize our high-dimensional feature field using PCA and visualizing three of the components in RGB. Interactively adjust which are visualized.
|
| 205 |
-
# - **SSC** (Semantic Scene Completion)
|
| 206 |
-
# Our features are used downstream for semantic predictions. Choose between the fully unsupervised approach or the linear probing approach.
|
| 207 |
-
|
| 208 |
demo = gr.Interface(
|
| 209 |
demo_run,
|
| 210 |
inputs=[
|
|
|
|
| 192 |
|
| 193 |
markdown_description = """
|
| 194 |
# SceneDINO Demo
|
|
|
|
| 195 |
[Paper](https://arxiv.org/abs/xxxx.xxxxx) | [Code](https://github.com/tum-vision/scenedino) | [Project Page](https://visinf.github.io/scenedino/)
|
| 196 |
|
| 197 |
Upload a single image to infer 3D geometry and semantics with **SceneDINO**. You can find some example images below.
|
| 198 |
+
|
| 199 |
<span style="color:orange">⚠️ NOTE: We assume the intrinsic camera matrix of KITTI-360, images are cropped and rescaled to 192x640. Further note our demo's voxel limit of 5M. </span>
|
| 200 |
"""
|
| 201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
demo = gr.Interface(
|
| 203 |
demo_run,
|
| 204 |
inputs=[
|
demo_utils/examples/gasteig.jpg
ADDED
|
Git LFS Details
|
demo_utils/examples/{kitti-360.png → kitti-360-1.png}
RENAMED
|
File without changes
|
demo_utils/examples/kitti-360-2.png
ADDED
|
Git LFS Details
|
demo_utils/examples/kitz.jpg
ADDED
|
Git LFS Details
|
demo_utils/examples/log.csv
CHANGED
|
@@ -1,2 +1,5 @@
|
|
| 1 |
image, mode, sigma_threshold, resolution, x_range, y_range, z_range
|
| 2 |
-
"kitti-360.png","DINOv2 (ViT-B)","Feature PCA 1-3",0.25,0.25,20,20,50
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
image, mode, sigma_threshold, resolution, x_range, y_range, z_range
|
| 2 |
+
"kitti-360-1.png","DINOv2 (ViT-B)","Feature PCA 1-3",0.25,0.25,20,20,50
|
| 3 |
+
"kitti-360-2.png","DINO (ViT-B)","SSC (unsup.)",0.25,0.25,20,20,50
|
| 4 |
+
"kitz.jpg","DINO (ViT-B)","Feature PCA 1-3",0.5,0.25,20,20,30
|
| 5 |
+
"gasteig.jpg","DINOv2 (ViT-B)","SSC (linear)",0.5,0.25,20,20,30
|