RedBottle13 commited on
Commit
686c245
·
verified ·
1 Parent(s): a9fbd9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
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
- inputs='Initial image',
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(share=True)
 
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()