[openCV]이미지 기본
2020. 4. 16. 09:47ㆍCoding/Python
728x90
기본 이미지 출력 방법
import cv2
from matplotlib import pyplot as plt
img = cv2.imread("/home/ubuntu/dev/_dataset/dental/panorama/179.png")
print("width: {}px".format(img.shape[1]))
print("height: {}px".format(img.shape[0]))
plt.figure(figsize = (16,9))
plt.imshow(img)
plt.show()
728x90
'Coding > Python' 카테고리의 다른 글
[vscode]terminal로 가상환경에 접근이 잘 안될때. (0) | 2020.11.23 |
---|---|
[Anaconda]pip is configured with locations that require TLS/SSL (0) | 2020.04.11 |
소수찾기 (0) | 2018.11.13 |
문자열 내림차순 정렬 (0) | 2018.11.12 |
문자열 내의 숫자 여부 확인 (0) | 2018.11.05 |