From 1c3e9044f65bb9730e7a37be703678b3ae98a0a8 Mon Sep 17 00:00:00 2001 From: gocivici Date: Sat, 21 Oct 2023 15:48:18 +0300 Subject: [PATCH] size fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index bb381b9..bafb39d 100644 --- a/main.py +++ b/main.py @@ -72,7 +72,7 @@ if cam.isOpened(): img = cv2.cvtColor(np.array(img), cv2.COLOR_RGB2BGR) cv2.rectangle(img,(30,550),(30+math.floor(int(fearPoint)*420/100),600),(255,255,255), -1) - cv2.rectangle(img,(30,550),(450,600),(0,0,255), 5) + cv2.rectangle(img,(30,550),(450,600),(0,0,255), 8) img = cv2.rotate(img, cv2.ROTATE_90_CLOCKWISE) cv2.imshow('webcam',img) cv2.waitKey(5000)