How to divide an image into 8x8 blocks?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sneha P S
am 9 Feb. 2018
Beantwortet: Image Analyst
am 30 Aug. 2018
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 Kommentare
Akzeptierte Antwort
Birdman
am 9 Feb. 2018
reshape(a,8,8,[])
1 Kommentar
riyaj atar
am 30 Aug. 2018
reshape(a,8,8,[]) this command will group a column of matrix x into 8 by 8 block.
Weitere Antworten (1)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!