OpenCV 에서 Basic image processing 는 다음과 같이 9가지를 이야기 하고 있습니다.1: Translation (상하, 좌우 이동)2: Rotation (그림의 회전 ,중심축이 어디냐?)3: Resizing (이미지의 사이즈 조정, Aspect Ratio고려)4: Flipping (수평, 수직으로 뒤집기)5: Cropping (그림 일부만 가져오기)6: Image arithmetic (그림을 더 진하게, 연하게 만들기)7: Bitwise operations (그림의 Bit 연산)8: Masking (마스크)9: Splitting and merging channels ( Color Channel 로 나누고, 합치고)오늘은 Resizing, Flipping에 대해서 알아보겠습니다.Res..
imutils 는 OpenCV가 제공하는 기능 중에 좀 복잡하고 사용성이 떨어지는 부분을 잘 보완해 주는 패키지이다.기본적으로 모두 OpenCV의 기능을 사용하고 있기 때문에 해당 기능을 사용하는 것은 아주 권장되고 있다. 설치는$ pip install imutilsTranslation# translate the image x=25 pixels to the right and y=75 pixels uptranslated = imutils.translate(workspace, 25, -75) Rotation# rotate the image and display itrotated = imutils.rotate(bridge, angle=angle, center=(cx, cy))Resizing# resize th..