Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
# Importing the requirements
|
|
|
|
|
|
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
from depth_estimation import process_image # Import the depth estimation function
|
| 4 |
|
|
|
|
| 1 |
# Importing the requirements
|
| 2 |
+
import warnings
|
| 3 |
+
warnings.filterwarnings("ignore")
|
| 4 |
+
|
| 5 |
import gradio as gr
|
| 6 |
from depth_estimation import process_image # Import the depth estimation function
|
| 7 |
|