Created
October 27, 2021 08:01
-
-
Save byte-sourcerer/a3a48c409a6b496fdce8c657f9b4450c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def show_opencv_image(image): | |
from matplotlib import pyplot as plt | |
image = image[:,:,::-1] | |
plt.imshow(image) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment