픽셀접근
opencv 픽셀에 접근하기
opencv 픽셀에 접근하기
2020.11.10import cv2 as cv import os import numpy as np dt_path = os.path.join(os.path.expanduser('~'),'Desktop') os.chdir(dt_path) img_color = cv.imread("test.jpg", cv.IMREAD_COLOR) # 이미지의 높이와 너비를 가져옵니다. height, width = img_color.shape[:2] print(img_color.shape) # gray scale image 를 저장할 numpy array 를 생성합니다. img_gray = np.zeros((height, width), np.uint8) # for 문을 돌면서 (x, y)에 있는 픽셀을 하나씩 접근합니다. for y in ran..