Hole punches should only be light gray (for now)

This commit is contained in:
Matt McWilliams 2023-03-14 11:29:30 -04:00
parent 10c0266750
commit 803b58c3dd
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ output = blank.copy()
hp = tmpl['holePunches']
for i in hp:
print(hp[i])
cv2.circle(output, (hp[i]['x'], hp[i]['y'],), hole, (0, 0, 0,), -1)
cv2.circle(output, (hp[i]['x'], hp[i]['y'],), hole, (200, 200, 200,), -1)
for i in range(0, len(images)) :
frame = cv2.imread(images[i])