If I divided 512*512 Green plane Image into 8*8 blocks How many blocks will Result?

1 次查看(过去 30 天)
I divided 512*512 Green plane Image into 8*8 blocks the result block was not what I expect .I expect the output will be 64 blocks .because I make the size of rows and columns in each block=64 block
  2 个评论
Geoff Hayes
Geoff Hayes 2015-3-21
Ameligege - how are you breaking the image into the 8x8 blocks? Are you using a built-in MATLAB function to do this for you or are you using something that you (or someone else) has written? Please include a sample of the code that you are using.
Ameligege
Ameligege 2015-3-21
[rows, columns , numberOfColorBands] = size(grayImage);
%Divide an image up into blocks by using mat2cell().
blockSizeR = 64; % Rows in block.
blockSizeC = 64; % Columns in block.
wholeBlockRows = floor(rows / blockSizeR);
blockVectorR = [blockSizeR * ones(1, wholeBlockRows), rem(rows, blockSizeR)];
wholeBlockCols =floor(columns / blockSizeC);
blockVectorC = [blockSizeC * ones(1, wholeBlockCols), rem(columns, blockSizeC)];
if numberOfColorBands > 1
ca = mat2cell(rgbImage, blockVectorR, blockVectorC, numberOfColorBands);
else
ca = mat2cell(grayImage, blockVectorR, blockVectorC);
end

请先登录,再进行评论。

回答(2 个)

John D'Errico
John D'Errico 2015-3-21
A simple way to do it is by looking at each axis.
On the "x" axis, 512/8 blocks = 64. On the "y" axis, 512/8 blocks = 64.
And 64*64 = (2^6)^2 = 2^12 = 4096. So you should expect 4096 blocks.
Or you could do it by area. How many pixels are in each block? 64. How many pixels are in the entire plane of the image? 512*512 = 262144.
So, assuming you can fit those complete blocks into the region, there would be 262144/64=4096 blocks.
The first approach is of course the correct one, since it lets you ensure that you can fit those complete blocks into the image. As long as 512/8 is an integer, there is no problem.

Image Analyst
Image Analyst 2015-3-21
It depends on what you're doing with the blocks and how you're creating an output. For example if you use blockproc() and return a single value for each block, you'll get a 64 by 64 image. However if you return an 8x8 block instead of a single value, then the output image will be 512x512. I'm attaching two demos that shows that and several other ways of using blockproc().
  3 个评论
Ameligege
Ameligege 2015-3-21
No,thanks .I actually Want it to be 64 blocks , I solve the problem of 81 blocks because I want it to be 64 .And I want to get rid of excess blocks .Here is my Image but I Take only the green layer after resizing it to 512*512

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by