Skip to content

Commit f660015

Browse files
committed
Updated src/model.py
Signed-off-by: Mpho Mphego <mpho112@gmail.com>
1 parent ff02fd7 commit f660015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def preprocess_output(self, inference_results, image, show_bbox=False):
260260
return eyes_coords
261261

262262
@staticmethod
263-
def draw_output(image, eyes_coords, radius=10, color=(255, 0, 0), thickness=2):
263+
def draw_output(image, eyes_coords, radius=10, color=(0, 0, 255), thickness=2):
264264
"""Draw a circle around ROI"""
265265
for eye, coords in eyes_coords.items():
266266
cv2.circle(image, (coords[0], coords[1]), radius, color, thickness)

0 commit comments

Comments
 (0)