/* code block */
반응형

import cv2


img_color = cv2.imread('img/color.jpg')
height, width = img_color.shape[:2]

cv2.imshow('img_color', img_color)


img_color = cv2.resize(img_color, None, fx=0.5, fy=0.5, interpolation=cv2.INTER_AREA)
img_color = cv2.resize(img_color, (int(width/2), int(height/2)), interpolation=cv2.INTER_AREA)
#둘 다 사용 가능

#사이즈를 줄일 때는cv2.INTER_AREA, 사이즈를 크게할 때는cv2.INTER_CUBIC, cv2.INTER_LINEAR

cv2.imshow('interpolation',img_color)

cv2.waitKey(0)
cv2.destroyAllWindows()

 

반응형

'Python > OpenCV' 카테고리의 다른 글

클릭으로 HSV 색 추출  (0) 2019.07.01
HSV 색상 검출하기  (0) 2019.06.30
BGR 색상을 HSV로 변환하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30

+ Recent posts