I'd like to use matplotlib for interactive drawing. I trained a neural network to approximate a distribution and I want to manually see if it is correct. Hence, once the computation is done I want to:
Mouse my mouse on the window. The pointer should be followed by a point (plt.scatter)
Get coordinates of the mouse and send them to my network
Using output from network, change the color of the point
Any leads I could follow ?
Thanks !!