Allocates memory and initializes the inverse wavelet transform context structure.
IppStatus ippiWTInvInitAlloc_32f_C1R (IppiWTInvSpec_32f_C1R** ppSpec,const Ipp32f* pTapsLow, int lenLow, int anchorLow,const Ipp32f* pTapsHigh, int lenHigh, int anchorHigh);
IppStatus ippiWTInvInitAlloc_32f_C3R (IppiWTInvSpec_32f_C3R** ppSpec,const Ipp32f* pTapsLow, int lenLow, int anchorLow,const Ipp32f* pTapsHigh, int lenHigh, int anchorHigh);
The function ippiWTInvInitAlloc is declared in the ippi.h file. This function allocates memory for the context structure pSpec of a one-level wavelet reconstruction and initializes this structure.
The inverse wavelet transform context structure contains parameters of a wavelet filter bank used for image reconstruction. The filter bank consists of two synthesis filters and includes the lowpass reconstruction filter (or coarse filter) and the highpass reconstruction filter (or detail filter).
The parameters pTapsLow and pTapsHigh specify coefficients, and anchorLow and anchorHigh - anchor positions for two synthesis filters. The anchor value sets the initial leftmost filter position relative to image row or column as shown in the figure below:
Here a stands for anchor value, N is filter length, x0 is the starting pixel of the processed row or column, and x-1, x-2 ,... are the additional border pixels that are needed for calculations. As seen from this figure, anchor position is specified relative to upsampled source data. The anchor value and filter length completely determine right, left, top, and bottom border sizes for source images used in reconstruction. The corresponding C-language expressions to calculate border sizes are given in the description of the function ippWTInv.
Once allocated and initialized the context structure can be used in several threads of calculations as well as in a number of wavelet reconstruction levels.
Example “Using Intel IPP Functions for Wavelet Transforms” shows how to use the function ippiWTInvInitAlloc_32f_C1R.
ippStsNoErr |
Indicates no error. Any other value indicates an error or a warning. |
ippStsNullPtrErr |
Indicates an error condition if pTapsLow, pTapsHigh, or pSpec pointer is NULL. |
ippStsSizeErr |
Indicates an error condition if filter length lenLow or lenHigh is less then 2. |
ippStsAnchorErr |
Indicates an error condition if anchor position anchorLow or anchorHigh is less then zero. |
ippStsMemAllocErr |
Indicates an error condition if memory allocation fails. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.