How to divide 64X64 matrix into sixteen 8X8 blocks?

13 visualizaciones (últimos 30 días)
RAKESH SR
RAKESH SR el 22 de Feb. de 2014
Comentada: Preeti Topno el 18 de Sept. de 2018
I am having pixel value of an image as 64X64 matrix. I want to divide it into sixteen 8X8 matrix (ie)an image into sub blocks.Can anyone help me plz...

Respuestas (2)

Star Strider
Star Strider el 22 de Feb. de 2014
I suggest using mat2cell.
Run this to see how it works :
A = [ones(4) ones(4)*2; ones(4)*3 ones(4)*4]
C = mat2cell(A, [4 4], [4 4])
B1 = C{1,1}
B4 = C{2,2}

Dishant Arora
Dishant Arora el 22 de Feb. de 2014

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by