Spaces:
Runtime error
Runtime error
fixx small line
Browse files
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),
|
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 |
|