How to divide an image into 8x8 blocks?
7 ビュー (過去 30 日間)
古いコメントを表示
I had an image of size 256*256 which is in ycbcr color space.I need to divide that input image into 8x8 blocks and need to apply walsh hadamard transform on each block.So please help me to divide the input in to 8x8 blocks.
0 件のコメント
採用された回答
Birdman
2018 年 2 月 9 日
reshape(a,8,8,[])
1 件のコメント
riyaj atar
2018 年 8 月 30 日
reshape(a,8,8,[]) this command will group a column of matrix x into 8 by 8 block.
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!