OpenCV: scipy ndimage(다차원 이미지 처리)
scipy.ndimage는 임의의 차원의 어레이로 동작하도록 설계되어 일반적인 영상 처리 및 분석 기능을 제공합니다. 즉 같은 사진을 회전시켜 여러 각도에서 테스트 해 보고싶을 때 유용합니다. import matplotlib.pyplot as plt import cv2 from scipy import ndimage def mosaic(img,rect,size): (x1,y1,x2,y2) = rect w = x2 - x1 h = y2 - y1 i_rect = img[y1:y2,x1:x2] i_small = cv2.resize(i_rect,(size,size)) i_mos = cv2.resize(i_small,(w,h),interpolation = cv2.INTER_AREA) img2 = img.copy()..
2021. 3. 15.