-
OpenCV
OpenCV (Open Source Computer Vision Library)
초기 Intel에서 개발 시작.다양한 Os에서 작동되고 있다. IoT장비나 RaspberryPi 등의 싱글보드에서도 사용할 수 있다.
설치
"pip install opencv-python"
version 4.4의 경우 33.5MB나 된다.
간단한 png 보여주기 Ex
>>> >>> import cv2 >>> img = cv2.imread("t.png") >>> cv2.imshow("Name1", img) >>> cv2.waitKey(0) 13 >>> cv2.destroyWindow("Name1") >>>
matplotlib에 적용 Ex
>>> >>> import matplotlib >>> matplotlib.pyplot.imshow(img) <matplotlib.image.AxesImage object at 0x000000001AD73A60> >>> matplotlib.pyplot.show()
'Python' 카테고리의 다른 글
Python - Coroutine (Python 2.4) (0) 2020.11.07 Python - Coroutine (Python 2.2) (0) 2020.11.07 Python - inspect (0) 2020.09.09 Python - TkInter gui 기초 (0) 2020.09.09 Python - "python-for-android" apk (0) 2020.09.09 Python - exe 파일 만들기 (0) 2020.09.09 Python - itertools (0) 2020.09.08 Python - namedtuple (0) 2020.09.08