emilios commited on
Commit
5b573a3
·
verified ·
1 Parent(s): d58fa21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,8 +3,8 @@ import cv2
3
 
4
 
5
  def inference(img):
6
- blur = cv2.blur(img,(25,25))
7
- return blur
8
 
9
  # For information on Interfaces, head to https://gradio.app/docs/
10
  # For user guides, head to https://gradio.app/guides/
 
3
 
4
 
5
  def inference(img):
6
+ my_result = cv2.erode(img,(25,25)).dilate(img,(25,25))
7
+ return my_result
8
 
9
  # For information on Interfaces, head to https://gradio.app/docs/
10
  # For user guides, head to https://gradio.app/guides/