Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -76,12 +76,11 @@ def sky_segmentation(uploaded_image):
|
|
76 |
|
77 |
# Create a Gradio demo
|
78 |
demo = gr.Interface(
|
79 |
-
sky_segmentation,
|
80 |
-
gr.Image(type='filepath'),
|
81 |
-
|
82 |
-
outputs='Sky mask',
|
83 |
title='Sky Segmentation',
|
84 |
-
description='Sky Pixel Identification in Images using Traditional Computer Vision Techniques'
|
85 |
)
|
86 |
if __name__ == "__main__":
|
87 |
-
demo.launch(
|
|
|
76 |
|
77 |
# Create a Gradio demo
|
78 |
demo = gr.Interface(
|
79 |
+
fn=sky_segmentation,
|
80 |
+
inputs= gr.Image(type='filepath'),
|
81 |
+
outputs="image",
|
|
|
82 |
title='Sky Segmentation',
|
83 |
+
description='Sky Pixel Identification in Images using Traditional Computer Vision Techniques'
|
84 |
)
|
85 |
if __name__ == "__main__":
|
86 |
+
demo.launch()
|