Skip to content

Instantly share code, notes, and snippets.

@lol97
Created January 22, 2019 13:44
Show Gist options
  • Select an option

  • Save lol97/6caecdb60227bd91fd7d5f8e23494fba to your computer and use it in GitHub Desktop.

Select an option

Save lol97/6caecdb60227bd91fd7d5f8e23494fba to your computer and use it in GitHub Desktop.
'''
code for load and show image
with :
opencv
by aglissae
'''
# import library
import cv2
# load image
image = cv2.imread("Image/baboon.png")
# check matrik gambar
# print(image)
# show image
cv2.imshow("gambar baboon",image)
cv2.waitKey()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment