vote up 2 vote down star
1

Hi,
I'm doing feature extraction from an image in Matlab. I'm having to apply many functions over nXn windows for this purpose (such as to find the variance over each 3X3 window, etc.
Is there an easy and efficient way to do this in Matlab other than looping over the matrix and collecting the window elements each time?
For some functions, I've been able to find an equivalent mask and applied them using filter2, but for many others I don't seem to have such a luxury (one good example: median of a 3X3 window).
What I want is something like arrayfun, but something that applies to nXn windows, not individual elements.
Thanks,
Sundar

flag

80% accept rate
It may help if you could update the question and list the specific operations you are wanting to apply to the windowed elements. There may be ways to turn them all into masks/filter elements for use with FILTER2 (or possibly CONV2). – gnovice Mar 25 at 14:45
do you have the image processing toolbox? – Azim Mar 25 at 15:39

1 Answer

vote up 2 vote down check

If you have the image processing toolbox then you can use blkproc to process nxm blocks of your image using custom defined functions. Here is an example

function Ip = imageProcessed(II,blockSize)
   % FUNCTION imageProcessed calculates average value of blocks of size nxm
   % blocks 
      if nargin<2,
         % default/example value for block size
         blockSize = [3 4];
      end

      if size(II,3)>1,
          % blkproc requires a grayscale image
          % convert II to gray scale if it is RGB.
          II=rgb2gray(II)
      end


      % Custom average function.
      myAveFun = @(x) ones(size(x))*sum(x(:))/length(x(:));

      % use blkproc to process image
      Ip = blkproc(II,[blockSize(1), blockSize(2)],myAveFun);
end
link|flag
Thank you, I do have the Image processing toolbox and that's exactly what I needed. – sundar Mar 25 at 16:26
your welcome. glad it helped. – Azim Mar 25 at 16:31
The help for this function pointed me to 'colfilt'. Turns out colfilt with a 'sliding' window makes my job even easier. Thanks for opening up this new array of functions to me. – sundar Mar 25 at 17:20
Nice catch, Azim. I totally forgot about BLKPROC. – gnovice Mar 25 at 17:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.