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
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15531 Solvers
-
Maximum running product for a string of numbers
2162 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2299 Solvers
-
Rosenbrock's Banana Function and its derivatives
154 Solvers
-
Implement simple rotation cypher
1066 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!