Fix appendStr -> append

This commit is contained in:
Matthew McWilliams 2022-11-09 09:45:07 -05:00
parent f103133b9f
commit 73b61c0cab
1 changed files with 1 additions and 1 deletions

View File

@ -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)