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