OpenCV 영상 데이터와 영상 처리
numpy.ndarray : OpenCV가 표현하는 영상데이터 형식 (uint8)그레이 스케일 : h*w 2차원 표현트루컬러 : h*w*3 3차원 표현 영상 픽셀 값 참조- 슬라이싱 사용img1 = cv2.imread('image.bmp', cv2.IMREAD_GRAYSCALE)img2 = cv2.imread('image.bmp', cv2.IMREAD_COLOR)img[:] # 255img[:,:] # 0,0,255 (B,G,R) 새 영상 생성- 임의의 값으로 초기화된 배열 : numpy.empty(shape, dtype=float,...) # dtype : 영상의 데이터 타입(uint8)- 0으로 초기화된 배열 : numpy.zeros(shape, dtype=float,...)- 1로 초..