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