Created
September 7, 2013 11:52
-
-
Save ayang/6474956 to your computer and use it in GitHub Desktop.
display opencv image using matplotlib in ipython notebook
I think cv2.cv.CV_BGR2RGB is replaced with cv2.COLOR_BGR2RGB now. Great gist, really helpful!
image show in jupyter notebook very small. how i can show it bigger?
@Killer1504 use the following
plt.rcParams['figure.figsize'] = [20, 10]
plt.imshow(img)
plt.show()
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add "plt.show()"