Problem 929. Rearrange coefficients after block based DCT transform.
Two dimensional block-based discrete cosine transform (DCT-II) is a widely used spatio-frequency image representation for image and video compression.
If we use same-size blocks we can group coefficients into frequency bands.
For example, consider a following 8x8 image:
1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1
If we split it into four 4x4 blocks we have DCTs of zero-blocks equal to zero-blocks and:
dct2([ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]) = 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
with the only non-zero element representing DC component and zeros representing AC components. We want to rearrange coefficients so corresponding components from different blocks are grouped together.
The result will be:
4 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
For a grayscale image (matrix) of size NxM and block size nxm (it is guaranteed that an image can be divided into blocks of this size) return NxM matrix grouped by frequencies (with DC components inside N/n x M/m block in the most top-left corner).
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers3
Suggested Problems
-
2355 Solvers
-
5781 Solvers
-
Back to basics 6 - Column Vector
1078 Solvers
-
Set the array elements whose value is 13 to 0
1381 Solvers
-
Replace multiples of 5 with NaN
449 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!