오늘은 특정 좌표에 모자이크나 블러를 생성하는걸 해보자. import cv2import numpy as npdef apply_gaussian_blur(image, ksize=(15, 15)): """Apply Gaussian blur to the image.""" return cv2.GaussianBlur(image, ksize, 0)def apply_mosaic(image, x, y, w, h, block_size=10): """Apply mosaic effect to a specified region of the image.""" # Extract the region of interest (ROI) roi = image[y:y+h, x:x+w] # Resize the..