JackWrion commited on
Commit
d49c34e
·
verified ·
1 Parent(s): fe7ba04

fixx small line

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def PreprocessIMG(image):
32
  y1 = int(y0 + 1000 * (a))
33
  x2 = int(x0 - 1000 * (-b))
34
  y2 = int(y0 - 1000 * (a))
35
- cv2.line(image, (x1, y1), (x2, y2), (255, 255, 255), 2)
36
 
37
  return image
38
 
 
32
  y1 = int(y0 + 1000 * (a))
33
  x2 = int(x0 - 1000 * (-b))
34
  y2 = int(y0 - 1000 * (a))
35
+ cv2.line(image, (x1, y1), (x2, y2), (255, 255, 255), 3)
36
 
37
  return image
38