Spaces:
Runtime error
Runtime error
Update app.py
#5
by
arminak6
- opened
app.py
CHANGED
|
@@ -3,7 +3,7 @@ import cv2
|
|
| 3 |
|
| 4 |
|
| 5 |
def inference(img):
|
| 6 |
-
blur = cv2.blur(img,(
|
| 7 |
return blur
|
| 8 |
|
| 9 |
# For information on Interfaces, head to https://gradio.app/docs/
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
def inference(img):
|
| 6 |
+
blur = cv2.blur(img,(50,50))
|
| 7 |
return blur
|
| 8 |
|
| 9 |
# For information on Interfaces, head to https://gradio.app/docs/
|