MATLAB: How to divide an image into 8×8 blocks

blocksimageImage Processing Toolbox

I had an image of size 256*256 which is in ycbcr color space.I need to divide that input image into 8×8 blocks and need to apply walsh hadamard transform on each block.So please help me to divide the input in to 8×8 blocks.

Best Answer

reshape(a,8,8,[])
Related Question