Fix appendStr -> append
This commit is contained in:
parent
f103133b9f
commit
73b61c0cab
|
@ -94,7 +94,7 @@ while count < 6 :
|
|||
strC = f'{cX},{cY}'
|
||||
if strC in centersStr :
|
||||
continue
|
||||
centers.appendStr(strC)
|
||||
centersStr.append(strC)
|
||||
corners.append((cX, cY))
|
||||
print(f'{cX},{cY}')
|
||||
cv2.circle(img, (cX, cY), 40, (255, 0, 0), -1)
|
||||
|
|
Loading…
Reference in New Issue