====== OpenCV ====== anaconda에서 opencv 설치 conda install --channel menpo opencv - http://stackoverflow.com/questions/40207011/opencv-not-working-properly-with-python-on-linux-with-anaconda-getting-error-th * http://www.simplecv.org/ * 문서 * https://opencv-python.readthedocs.io/en/latest/index.html ===== 이미지 출력 ===== import numpy as np import cv2 as cv for _ in range(1000): rgb = np.random.random((240, 320, 3)) r, g, b = cv2.split(rgb) bgr = cv2.merge([b, g, r]) cv.imshow('img', bgr) cv.waitKey(16) # ms cv.destroyAllWindows() ===== 문서 ===== * https://opencv-python.readthedocs.io/en/latest/index.html