fffiloni commited on
Commit
9c14df6
1 Parent(s): 07746a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ def preprocess(img):
8
  cv2.imwrite("1_gray.png", img_gray)
9
 
10
  # Blur the image
11
- img_blur = cv2.GaussianBlur(img_gray, (3, 3), 16)
12
  cv2.imwrite("2_blur.png", img_blur)
13
 
14
  # Detect edges with Canny
 
8
  cv2.imwrite("1_gray.png", img_gray)
9
 
10
  # Blur the image
11
+ img_blur = cv2.GaussianBlur(img_gray, (3, 3), 1)
12
  cv2.imwrite("2_blur.png", img_blur)
13
 
14
  # Detect edges with Canny