Expert Answer
Kshitij Singh answered .
2025-11-20
You can blur the image with imfilter() or conv2():
windowSize = 21; % Bigger for more blurring.
kernel = ones(windowSize) / windowSize^2;
output = imfilter(rgbImage, kernel);
Not satisfied with the answer ?? ASK NOW