Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -205,7 +205,7 @@ def blur_im(img,bounds):
|
|
205 |
for bound in bounds:
|
206 |
p0, p1, p2, p3 = bound[0]
|
207 |
p0 = (int(p0[0]),int(p0[1]))
|
208 |
-
p2 = (int(p2[
|
209 |
im[p0, p2] = cv2.blur(im[p0, p2] ,(23,23))
|
210 |
return im
|
211 |
|
|
|
205 |
for bound in bounds:
|
206 |
p0, p1, p2, p3 = bound[0]
|
207 |
p0 = (int(p0[0]),int(p0[1]))
|
208 |
+
p2 = (int(p2[0]),int(p2[1]))
|
209 |
im[p0, p2] = cv2.blur(im[p0, p2] ,(23,23))
|
210 |
return im
|
211 |
|