Reputation: 41
I want to do additional operations on the image displayed by matplotlib.pyplot.imshow() method.
For Example: I want an extra button "Display ROI" where it displays the ROI of the co-ordinates I have selected in the image in my preferred format.
Is this possible?
Upvotes: 4
Views: 3718
Reputation: 6279
There is a widgets module in matplotlib that can give you that functionality. Check out the widgets examples page.
Upvotes: 3