In [4]:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
from PIL import Image
 
img = Image.new('RGB', (1278, 1024), color = 'black')
imgplot = plt.imshow(img)
x = 500
y = 600
r1 = 100
r2 = 200
circ = Circle((x,y),r2)
ax.add_patch(circ)
plt.show()



In [ ]:


In [ ]: