Spaces:
Runtime error
Runtime error
Commit
·
a348a40
1
Parent(s):
6da63eb
Update app.py
Browse files
app.py
CHANGED
@@ -25,4 +25,8 @@ RightCam = gr.inputs.Image(type="numpy")
|
|
25 |
|
26 |
map = gr.Interface(fn=depthMap,
|
27 |
inputs=[leftCam,RightCam],
|
28 |
-
outputs="image").launch(debug=True)
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
map = gr.Interface(fn=depthMap,
|
27 |
inputs=[leftCam,RightCam],
|
28 |
+
outputs="image").launch(debug=True),
|
29 |
+
examples=[
|
30 |
+
os.path.join(os.path.dirname(__file__), "left_artroom.png"),
|
31 |
+
os.path.join(os.path.dirname(__file__), "right_artroom.png"),
|
32 |
+
]
|