Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Ameligege
Ameligege le 21 Mar 2015
Commenté : Ameligege le 21 Mar 2015
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 commentaires
Geoff Hayes
Geoff Hayes le 21 Mar 2015
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 le 21 Mar 2015
[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

Connectez-vous pour commenter.

Réponses (2)

John D'Errico
John D'Errico le 21 Mar 2015
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.
  1 commentaire
Ameligege
Ameligege le 21 Mar 2015
Here is the output I could not access each block individually because the number of blocks

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 21 Mar 2015
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 commentaires
Image Analyst
Image Analyst le 21 Mar 2015
You could get more than 64 if your image is color. Please attach your image so I can inspect it.
Ameligege
Ameligege le 21 Mar 2015
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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Computer Vision with Simulink dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by