return normalized_inverse_depth
Browse files
app.py
CHANGED
|
@@ -45,7 +45,7 @@ def run(image: PIL.Image.Image) -> tuple[tuple[PIL.Image.Image, PIL.Image.Image]
|
|
| 45 |
focal_length = post_processed_output[0]["focal_length"].item()
|
| 46 |
|
| 47 |
return (
|
| 48 |
-
(image,
|
| 49 |
f"{field_of_view:.2f}",
|
| 50 |
f"{focal_length:.2f}",
|
| 51 |
f"{depth_min:.2f}",
|
|
|
|
| 45 |
focal_length = post_processed_output[0]["focal_length"].item()
|
| 46 |
|
| 47 |
return (
|
| 48 |
+
(image, normalized_inverse_depth),
|
| 49 |
f"{field_of_view:.2f}",
|
| 50 |
f"{focal_length:.2f}",
|
| 51 |
f"{depth_min:.2f}",
|