이미지 커널(Kernel)에 대한 이해를 아주 쉽게 가르쳐 준다. http://setosa.io/ev/image-kernels/ The use of Kernels - also known as convolution matrices or masks - is invaluable to image processing. Techniques such as blurring, edge detection, and sharpening all rely on kernels - small matrices of numbers - to be applied across an image in order to process the image as a whole.
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..