Created
January 22, 2019 13:44
-
-
Save lol97/6caecdb60227bd91fd7d5f8e23494fba to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| ''' | |
| 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