Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,8 +3,8 @@ import cv2
|
|
3 |
|
4 |
|
5 |
def inference(img):
|
6 |
-
|
7 |
-
return
|
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/
|