MATLAB: Selecting pixel of image

blurconvolutiondigital image processingfilterImage Processing Toolbox

I am trying to manipulate the pixel of image by using a window.
Can someone help me?
Thanks in advance

Best Answer

boxFilter = ones(2*k+1);
U = imfilter(I, boxFilter);
Related Question