i have binary image and need to divide it into blocks

2 vues (au cours des 30 derniers jours)
Samar Ragab
Samar Ragab le 28 Août 2018
First i need to divide a binary image into 8x8 block.Second, in each blocks,check if number of 1s is larger than 0s,if larger number of 1s,then i need to calculate some features,else do nothing
  1 commentaire
Kai Domhardt
Kai Domhardt le 28 Août 2018
What do you have so far, any first tries?

Connectez-vous pour commenter.

Réponse acceptée

Yuvaraj Venkataswamy
Yuvaraj Venkataswamy le 28 Août 2018
if true
I = binary_image;
numBlkH = 8;
numBlkW = 8;
[imgH,imgW,~] = size(I);
szBlkH = [repmat(fix(imgH/numBlkH),1,numBlkH-1) imgH-fix(imgH/numBlkH)*(numBlkH-1)];
szBlkW = [repmat(fix(imgW/numBlkW),1,numBlkW-1) imgW-fix(imgW/numBlkW)*(numBlkW-1)];
C = mat2cell(I, szBlkH, szBlkW)';
C = C(:);
figure,
imshow(I)
for i=1:numBlkH*numBlkW
subplot(numBlkH,numBlkW,i), imshow( C{i} )
end
end

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by