views:

1324

answers:

3

I have a 256x256 image and I want to divide it into 4 blocks of 128x128 each and address them as A1 to A4. Now I want to call them separately and do some operations on them. I know this can be done using the blkproc function -- but how exactly?

Do I call blkproc like this?

B=blkproc(I,[4 4],?)

What do I put in place of the "?", and how can I address the 4 blocks created?

A: 

If myImage is your 256x256 image, wouldn't it be

image_top_left = myImage(1:128,1:128);
image_top_right = myImage(1:128,129:256);
image_bottom_left = myImage(129:256,1:128);
image_bottom_right = myImage(129:256,129:256);

?

Adrien Plisson
+2  A: 

blockproc is the new name for blkproc (which is deprecated). It can be used to apply a function to each block in an image. For example, if you wanted to divide a matrix I into 8x8 blocks and calculate the mean of each block, you would do this:

B=blockproc(I, [8 8], @(x) mean(x.data(:)));

B is then a matrix containing the means of the blocks.

Two things to note here:

  • The specifier [8 8] specifies the size of the blocks, not the number of blocks.

  • You don't get access to the blocks themselves outside of the function you pass to blockproc. If you need the blocks themselves, you have to do as Adrien suggested:

    A1=I(1:128, 1:128);
    A2=I(129:256, 1:128);
    A3=I(1:128, 129:256);
    A4=I(129:256, 129:256);
    

    Of course, in a real program, you should probably do this using a loop.

Martin B
If you're still using an old version of the Image Processing Toolbox with the BLKPROC function, the syntax of the above example will change to: `B = blkproc(I, [8 8], @(x) mean(x(:)));`
gnovice
+2  A: 

Since BLOCKPROC (and the deprecated BLKPROC) are both functions in the Image Processing Toolbox, I thought I'd add a basic MATLAB solution that requires no additional toolboxes...

If you want to divide a matrix into submatrices, one way is to use MAT2CELL to break the matrix up and store each submatrix in a cell of a cell array. For your case, the syntax would look like this:

C = mat2cell(I,[128 128],[128 128]);

C is now a 2-by-2 cell array with each cell storing a 128-by-128 submatrix of I. If you want to perform an operation on each cell, you could then use the function CELLFUN. For example, if you wanted to take the mean of the values in each submatrix, you would do the following:

meanValues = cellfun(@(x) mean(x(:)),C);

The first argument is a function handle to an anonymous function which first reshapes each submatrix into a column vector and then takes the mean. The output is a 2-by-2 matrix of the mean values for each submatrix. If the function you pass to CELLFUN creates outputs of different sizes or types for each cell, then CELLFUN will have a problem concatenating them and will throw an error:

??? Error using ==> cellfun
Non-scalar in Uniform output, at index 1, output 1.
Set 'UniformOutput' to false.

If you add ...,'UniformOutput',false); to the end of your call to CELLFUN, then the output in the above case will instead be a 2-by-2 cell array containing the results of performing the operation on each submatrix.

gnovice