We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I want to use imshow to display a raw rgb picture, it seems that not support .
The text was updated successfully, but these errors were encountered:
Hi there, just wanted to add that this capability works fine for me. E.g. the following random rgb image:
import matplotlib.pyplot as plt import numpy as np plt.imshow(np.random.random_integers(0, 255, (100,100,3))) plt.show()
Maybe could you elaborate on the issue you're having?
Sorry, something went wrong.
aah, so you just need to call plt.show() after you call plt.imshow(...). Thank you!
plt.show()
plt.imshow(...)
No branches or pull requests
I want to use imshow to display a raw rgb picture, it seems that not support .
The text was updated successfully, but these errors were encountered: