목차 1. 배경처리import cv2#Read an Image using OpenCVimage = cv2.imread("../Resources/Images/image1.jpg")#Convert the image to Gray ScaleimageGray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)#Display the Imagecv2.imshow("Image",image)cv2.imshow("Gray Scale Image", imageGray)cv2.waitKey(0)cv2.destroyAllWindows() 2. 가우시안 블러#Import All the Required Libraries#가우시안블러 : 이미지의 세부 사항을 흐리게 하여 부드러운 느낌을 주는 효과import..