Skip to content

Instantly share code, notes, and snippets.

@cjwcommuny
Created October 27, 2021 08:01
Show Gist options
  • Save cjwcommuny/a3a48c409a6b496fdce8c657f9b4450c to your computer and use it in GitHub Desktop.
Save cjwcommuny/a3a48c409a6b496fdce8c657f9b4450c to your computer and use it in GitHub Desktop.
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