imutils package 기능
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..
ImageProcessing Package
2018. 4. 1. 23:38