Computer Science, asked by Krishnanunni1282, 11 months ago

Discuss transform coding and frequency domain methods

Answers

Answered by BrainlyRacer
0

A Simple Transform Encoding procedure maybe described by the following steps for a 2x2 block of monochrome pixels:

1.

Take top left pixel as the base value for the block, pixel A.

2.

Calculate three other transformed values by taking the difference between these (respective) pixels and pixel A, i.e. B-A, C-A, D-A.

3.

Store the base pixel and the differences as the values of the transform.

Given the above we can easily for the forward transform:

and the inverse transform is:

The above transform scheme may be used to compress data by exploiting redundancy in the data:

Any Redundancy in the data has been transformed to values, Xi. So We can compress the data by using fewer bits to represent the differences. I.e if we use 8 bits per pixel then the 2x2 block uses 32 bits/ If we keep 8 bits for the base pixel, X0, and assign 4 bits for each difference then we only use 20 bits. Which is better than an average 5 bits/pixel

Similar questions