이 프로그램에서는 OpenCV 함수 GaussianBlur()를 사용하여 이미지를 흐리게 처리합니다. 가우시안 블러는 가우스 함수를 사용하여 이미지를 흐리게 처리하는 과정입니다. 이미지에서 노이즈를 제거하고 디테일을 줄이기 위해 그래픽 소프트웨어에서 널리 사용됩니다.
알고리즘
Step 1: Import cv2. Step 2: Read the original image. Step 3: Apply gaussian blur function. Pass the image and the kernel size as parameter. Step 4: Display the image.
원본 이미지
예시 코드
import cv2 image = cv2.imread("testimage.jpg") Gaussian = cv2.GaussianBlur(image, (7,7), 0) cv2.imshow("Gaussian Blur", Gaussian)
출력
가우시안 블러 :