RedBottle13 commited on
Commit
f7d57a7
·
verified ·
1 Parent(s): 2a20c77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -75,6 +75,14 @@ def sky_segmentation(uploaded_image):
75
 
76
 
77
  # Create a Gradio demo
78
- demo = gr.Interface(sky_segmentation, gr.Image(type='filepath'), "image")
 
 
 
 
 
 
 
 
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)