Hole punches should only be light gray (for now)
This commit is contained in:
parent
10c0266750
commit
803b58c3dd
|
@ -99,7 +99,7 @@ output = blank.copy()
|
||||||
hp = tmpl['holePunches']
|
hp = tmpl['holePunches']
|
||||||
for i in hp:
|
for i in hp:
|
||||||
print(hp[i])
|
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)) :
|
for i in range(0, len(images)) :
|
||||||
frame = cv2.imread(images[i])
|
frame = cv2.imread(images[i])
|
||||||
|
|
Loading…
Reference in New Issue