Click here to Skip to main content
15,880,796 members
Articles / Programming Languages / Visual C++ 10.0

Iterative Fast 1D Forvard DCT

Rate me:
Please Sign up or sign in to vote.
4.14/5 (7 votes)
27 Jan 2011CPOL2 min read 35.5K   1.1K   9   14
Algorithm of fast forward DCT in 1D by only iteration and without branching of code

Introduction

Discret cosine’s transformation (DCT) is a well known transformation. It has very wide implementation and is used for compression, processing, e.g., due to real character of coefficients. DCT is used more often than Fourier transform. But for DCT, only one fast algorithm is well known - for 2D processing. For 1D, there is the Byeong Lee’s DCT algorithm. But its algorithm is recursive. Using it is useless for some type of equipments (e.g., GPGPU). For this target, I have created an iterative algorithm, without recursive calling and almost unlimited input data (only power of 2).

Background

For base was chosen Byeong Lee’s DCT, that is shown in the figure. The algorithm is based on Butterfly distribution. This algorithm is used wide for hardware implementation.

Lee_s_algorithm.gif

Using the Code

The developed code is based on two Paths: input with Input Butterfly and output with Output Butterfly.

Massive for keeping data between iterations is one, and allocated from heap by demand. Other massive is used for storing computed cosine’s coefficient. Every iteration divides the Front buffer into two parts: Even and Odd. After copying them into Back, the Front and Back buffers are exchanged.

C++
//
double *Front, *Back, *temp; // Pointers on Front, Back, and temp massives of iteration.
double *Array = new double[N<<1]; // Massive with doubling size. 
double *Curent_Cos = new double[N>>1]; // store for precomputing.

Front = Array; // Front pointed on begin Massive.
step = 0;
Back = Front + N; // Back pointed on center of Massive.
        
for(i = 0; i < N; i++)
{
    Front[i] = block[i]; // Load input Data
}

while(j > 1)// Cycle of iterations Input Butterfly
{
    half_N = half_N >> 1;
    current_PI_half_By_N = PI_half / (double)prev_half_N;
    current_PI_By_N = 0;
    step_Phase = current_PI_half_By_N * 2.0;
    for(i = 0; i < half_N; i++)
    {
        //Precompute Cosine's coefficients
        Curent_Cos[i] = 0.5 / cos(current_PI_By_N + current_PI_half_By_N);
        current_PI_By_N += step_Phase;
    }
    shif_Block = 0;
    for(int x = 0; x < step; x++)
    {    
        for(i= 0; i<half_N; i++)
        {
            shift = shif_Block + prev_half_N - i - 1;
            Back[shif_Block + i] = Front[shif_Block + i] + Front[shift];

            Back[shif_Block + half_N + i] = 
              (Front[shif_Block + i] - Front[shift]) * Curent_Cos[i];
        }
        shif_Block += prev_half_N;
    }
    temp = Front;
    Front = Back;
    Back = temp;
    j = j >> 1;
    step = step << 1;
    prev_half_N = half_N;
}      

while(j < N) // Cycle of Out ButterFly
{
    shif_Block = 0;
    for(int x = 0; x < step; x++)
    {     
        for(i = 0; i<half_N - 1; i++)
        {
            Back[shif_Block + (i << 1)] = Front[shif_Block + i];    
            Back[shif_Block + (i << 1) + 1] = 
               Front[shif_Block + half_N + i] + Front[shif_Block + half_N + i + 1];    
        }
        Back[shif_Block + ((half_N - 1) << 1)] = Front[shif_Block + half_N - 1]; 
        Back[shif_Block + (half_N << 1) - 1] = Front[shif_Block + (half_N << 1) - 1]; 
        shif_Block += prev_half_N;
    }
    temp = Front;
    Front = Back;
    Back = temp;
    j = j << 1;
    step = step >> 1;
    half_N = prev_half_N;
    prev_half_N = prev_half_N << 1;
}
for(int i = 0; i < N; i++)
{
    block[i] = Front[i]; // Unload DCT coefficients 
}
block[0] = block[0] / dN; // Compute DC.

Points of Interest

A very important fact is that after the first iteration, we have only one group of odd coefficients, but after the second iteration, we have two groups of odd coefficients. For those two groups, you will need identical cosine's coefficients. Store for precomputing allows to compute that coefficient only for one group. For another group will be used data from store. It's very useful for computing 1024 and more points.

In the end, I can say that the developed algorithm has more precision than the usual implementation (due to less computing of cosine's coefficient).

History

  • 27th Jan, 2011: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Robert_Dyball5-Aug-18 16:56
professionalRobert_Dyball5-Aug-18 16:56 
GeneralMy vote of 5 Pin
majid torfi27-Oct-14 19:35
professionalmajid torfi27-Oct-14 19:35 
QuestionDCT result Pin
Member 107620522-May-14 1:05
Member 107620522-May-14 1:05 
AnswerRe: DCT result Pin
Evgeny Pereguda16-May-14 4:06
Evgeny Pereguda16-May-14 4:06 
GeneralRe: DCT result Pin
Member 1076205222-May-14 16:16
Member 1076205222-May-14 16:16 
GeneralRe: DCT result Pin
Evgeny Pereguda23-May-14 4:39
Evgeny Pereguda23-May-14 4:39 
GeneralRe: DCT result Pin
Member 1076205222-Jun-14 22:06
Member 1076205222-Jun-14 22:06 
GeneralRe: DCT result Pin
Evgeny Pereguda22-Jun-14 22:21
Evgeny Pereguda22-Jun-14 22:21 
GeneralMy vote of 5 Pin
xfx8-Mar-12 16:22
xfx8-Mar-12 16:22 
GeneralMy vote of 3 Pin
Emilio Garavaglia27-Jan-11 9:48
Emilio Garavaglia27-Jan-11 9:48 
GeneralMy vote of 1 Pin
Richard MacCutchan27-Jan-11 6:13
mveRichard MacCutchan27-Jan-11 6:13 
I think this needs a lot of work, particularly for non-mathematicians.
GeneralRe: My vote of 1 Pin
RugbyLeague27-Jan-11 6:29
RugbyLeague27-Jan-11 6:29 
GeneralRe: My vote of 1 Pin
Richard MacCutchan27-Jan-11 7:02
mveRichard MacCutchan27-Jan-11 7:02 
GeneralRe: My vote of 1 Pin
xfx8-Mar-12 16:22
xfx8-Mar-12 16:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.