4) "Calibração Multivariada Empregando Transformada Wavelet Adaptativa" (It is written in brazilian portuguese. However, you can translate it to english using some tool like google translator)
5) "Identificação de Imagem com Análise em Multiresolução Wavelet em Sistema"
In wavelet transform implementation,there are 2 filters namely low pass filter and High pass filter.When you decompose an image there are 2 sets of processing involved one is row processing and another is column processing.First every row has to be convoluted with low pass filter coefficients and down sampled by 2 and the same row has to be convoluted with high pass filter coefficients and down sampled by 2.
The same process has to be repeated for every row and has to be repeated for every column after row processing.After the overall computation you will get 4 bands namely 'LL','LH','HL','HH'. It is well known that convolution involves multiplication and addition. This is termed to be computational complexity.
If there is Discrete wavelet transform (DWT) followed by Inverse discrete wavelet transform (IDWT) there is no loss in the information.you will get exact quality of the image after reconstruction.The computational complexity is as mentioned in the above answer.When you introduce quantization after wavelet decomposition there is a loss in the quality of the image which is normally measured by a parameter called Peak signal to noise ratio(PSNR in dB).The computational complexity is more if quantization is also involved
The Wavelet Transform may be written as a convolution product, thus as such, you may resort to the convolution theorem and compute the Wavelet Transform in the frequency domain. By doing so, the Wavelet Transform is reduced to a pointwise multiplication between the FFT of your input image and the FFT of your dilated, rotated and translated wavelet. Hence, the overall computational complexity would be dominated by the FFT transform costs for the inputs, which is O(NlogN), N being each input size.