Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,7 @@ with gr.Blocks(css=css) as demo:
|
|
83 |
|
84 |
h, w = image.shape[:2]
|
85 |
|
86 |
-
depth = predict_depth(image
|
87 |
|
88 |
raw_depth = Image.fromarray(depth.astype('uint16'))
|
89 |
tmp_raw_depth = tempfile.NamedTemporaryFile(suffix='.png', delete=False)
|
|
|
83 |
|
84 |
h, w = image.shape[:2]
|
85 |
|
86 |
+
depth = predict_depth(image)
|
87 |
|
88 |
raw_depth = Image.fromarray(depth.astype('uint16'))
|
89 |
tmp_raw_depth = tempfile.NamedTemporaryFile(suffix='.png', delete=False)
|