oi eu presiso de ajuda. eu tentei fazer um circulo que gira em circulos porem ao invez disso a tela não responde. alguem pode me dizer oque ouve eis o codigo
import cv2
import matplotlib.pyplot as plt
import numpy as np
img = cv2.imread("C:\\Users\\zumbi\\OneDrive\\Documentos\\guto_backup\\guto\\desenhos\\Nova3.jpg")
y = 0
xr = int(input())
x = xr
while(True):
if (x > 0):
while(x > 0):
x = x + 1
y = y - 1
cv2.circle(img, (x, y), 20, (0, 0, 255), -1)
cv2.imshow("circulo", img)
if(x > -xr):
while(x > -xr):
x = x - 1
y = y - 1
cv2.circle(img, (x, y), 20, (0, 0, 255), -1)
cv2.imshow("circulo", img)
if(x < 0):
while(x < 0):
x = x + 1
y = y - 1
cv2.circle(img, (x, y), 20, (0, 0, 255), -1)
cv2.imshow("circulo", img)
if(x > -xr):
while(x > xr):
x = x + 1
y = y + 1
cv2.circle(img, (x, y), 20, (0, 0, 255), -1)
cv2.imshow("circulo", img)
if(cv2.waitKey(10) == 1):
cv2.destroyAllWindows()
ajuda pf