how to blur the left half image alone

4 visualizaciones (últimos 30 días)
learningmat
learningmat el 28 de Mayo de 2014
Respondida: Image Analyst el 28 de Mayo de 2014
Hi all,
I want to blur the right half or left half of the image alone... How to do that..
Thanks in advance

Respuesta aceptada

Image Analyst
Image Analyst el 28 de Mayo de 2014
[rows, columns] = size(yourImage);
midColumn = ceil(columns/2);
leftHalf = yourImage(:, 1:midColumn);
rightHalf = yourIMage(:, midColumn+1:end);
windowwindowSizeSzie = 11;
blurryLeft = imfilter(leftHalf, ones(windowSize)/windowSize^2);
blurryRight = imfilter(rightHalf, ones(windowSize)/windowSize^2);

Más respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by