I have float x / y arrays that contain a circle .
import matplotlib.pylab as plt import numpy as np npX = np.asarray(X) npY = np.asarray(Y) plt.imshow(img)
I want to show circles on my image using these centers. How can I achieve this?
python numpy matplotlib plot imshow
orkan
source share