i've an image of size 204x204. after dividing the the image into overlapping blocks,then m using mat2cell i got the following error

1 view (last 30 days)
I=imread('lina.jpg');
whos I;
fun=@(block_struct) mean2(block_struct.data(:));
B=blockproc(I,[6 6],fun,'bordersize',[3 3]);
C=mat2cell(B,[6 6],[6 6]);
error: =>
Input arguments, D1 through D2, must sum to each dimension of the input matrix size, [0 0].'
error in mat2cell
can u tell what is my mistake n plz rectify it...as soon as

Accepted Answer

Walter Roberson
Walter Roberson on 12 Feb 2013
In your call
C=mat2cell(B,[6 6],[6 6]);
the second argument must add up to size(B,1), and the third argument must add up to size(B,2).
Also, somehow, your B has come out empty, size 0 x 0, perhaps because you did not use the blockproc options 'TrimBorder', false
  2 Comments
pammy
pammy on 12 Feb 2013
Edited: pammy on 12 Feb 2013
sir u mean C=mat2cell(B,size(B,1),size(B,2));
is it correct or not?
if not plz rectify it
Walter Roberson
Walter Roberson on 12 Feb 2013
No it is not correct.
C = mat2cell(B, [6 6 6 6 6 6 ... 6], [6 6 6 6 .... 6], size(B,3));
where the first group of 6's has enough 6's to add up to size(B,1) and the second group of 6's has enough 6's to add up to size(B,2)

Sign in to comment.

More Answers (1)

Jan
Jan on 12 Feb 2013
The dimensions in your MAT2CELL call do not match the size of the input B, which seems to be empty.
  4 Comments
Image Analyst
Image Analyst on 12 Feb 2013
mat2cell does not do overlapping blocks/tiles. They are adjacent (touching) but NOT overlapping. You have to decide what you want: tiling with overlapping or tiling without overlapping.
Walter Roberson
Walter Roberson on 12 Feb 2013
When blockproc() is called with Bordersize, and with TrimBorder set to false, and if the fun returns something the same size as the data structure member passed into the fun, then the returned array will consist of adjacent tiles expanded out of the overlapping data.
1 2 3 | 4 5 6 7 8 9 | 10 11 12 || 7 8 9 | 10 11 12 13 14 15 | 16 17 18 || 13 14 15 | 16 17 18 19 20 21 | 22 23 24 ||
In the above, the single-| mark the logical edges of the core of the tiles, with the overlap region to the left and right of there; the double-|| mark the logical edges of what was returned by fun and thus the places at which mat2cell should be used to break up the array. The bars have just been added for education purposes here and do not exist in the array; the array itself would look like
1 2 3 4 5 6 7 8 9 10 11 12 7 8 9 10 11 12 13 14 15 16 17 18 13 14 15 16 17 18 19 20 21 22 23 24

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!