![]() | ||
Similar to 1-D Digital signal processing in case of the Multidimensional signal processing we have Efficient algorithms. The efficiency of an Algorithm can be evaluated by the amount of computational resources it takes to compute output or the quantity of interest. In this page, two of the very efficient algorithms for multidimensional signals are explained. For the sake of simplicity and description it is explained for 2-D Signals. However, same theory holds good for M-D signals. The exact computational savings for each algorithm is also mentioned.
Contents
Motivation and applications
In the case of digital systems, a mathematical expressions can be used to describe the input-output relationship and an algorithm can be used to implement this relationship. Similarly, algorithms can be developed to implement different transforms such as Digital filter, Fourier transform, Histogram, Image Enhancements and etc. Direct implementation of these input-output relationships and transforms is not necessarily the most efficient way to implement those.
When people began to compute such outputs from input through direct implementation, they began to look for more efficient ways. This wiki page aims at showcasing such efficient and fast algorithms for multidimensional signals and systems. A multidimensional (M-D) signal can be modeled as a function of M independent variables, where M is greater than or equal to 2. These signals may be categorized as continuous, discrete, or mixed. A continuous signal can be modeled as a function of independent variables which range over a continuum of values, example – an audio wave travelling in space, 3-D space waves measured at different times. A discrete signal, on the other hand, can be modeled as a function defined only on a set of points, such as the set of integers. An image is the simplest example of a 2-D discrete domain signal that is spatial in nature.
In the context of Fast Algorithms, let us consider the example below:
We need to compute A which is given by
A = αγ + αδ + βγ + βδ where α,β,γ and δ are complex variables.
To compute A, we need 4 complex multiplications and 3 complex additions. The above equation can be written in its simplified form as
A = (α + β)(γ + δ)
This form requires only 1 complex multiplication and 2 complex additions.
Thus the second way of computing A is much more efficient and fast compared to the first method of computing A. This is the motivation for the evolution of the fast algorithms in the digital signal processing Field. Consequently, many of the real-world applications make use of these efficient Algorithms for fast computations.
Problem Statement and Basics
The simplest form of representing a Linear Shift Invariant system(LSI) is through its Impulse response. The output of such LSI discrete domain system is given by the convolution of its input signal and system’s impulse response. This is mathematically represented as follows:
where
According to the equation above to obtain the Output value at a particular point ( say
Assuming a 2-D input signal is of length
We encounter a similar scenario when we have to compute the discrete Fourier Transforms of a signal of interest.
The Direct Calculation of the 2-D DFT is simply the evaluation of the double Sum
The total number of complex multiplications and complex additions needed to evaluate this 2-D DFT by direct calculation is
Row Column Decomposition approach for the evaluation of DFT
The DFT sum
Let
Employing this method the DFT
The same principle is employed for evaluating the M-D DFT of a M - dimensional signal.
Now let's talk about the computational savings we get using this approach. It is observed that we require
Vector Radix Fast Fourier Transform
Just like the 1-D FFT, decimation in time can be achieved in the case of 2-D Signals. The 1-D DFT of a signal whose length is a power of 2, can be expressed in terms of two half-length DFTs, each of these can again be expressed as a combination of quarter length DFTs and so on.
In the case of 2-D signals we can express the
This is written as :
where
All the arrays
The above equation tell us how to compute the four DFT points
Thus we see that the
By analogy from the 1-D case, the computation depicted in the below figure is called a
Each butterfly requires three complex multiplications and eight complex additions for the calculation of outputs from the inputs. And to compute all the samples of
This decimation procedure is performed