이 프로그램에서는 opencv 함수 blur()를 사용하여 이미지를 흐리게 처리합니다.
알고리즘
Step 1: Import OpenCV. Step 2: Import the image. Step 3: Set the kernel size. Step 4: Call the blur() function and pass the image and kernel size as parameters. Step 5: Display the results.
원본 이미지
예시 코드
import cv2 image = cv2.imread("testimage.jpg") kernel_size = (7,7) image = cv2.blur(image, kernel_size) cv2.imshow("blur", image)
출력
흐릿한 이미지
설명
커널 크기는 이미지의 작은 부분만 흐리게 하는 데 사용됩니다. 커널은 전체 이미지를 가로질러 이동하고 커버하는 픽셀을 흐리게 합니다.