Developer Reference for Intel® Integrated Performance Primitives
Initializes the LR deconvolution state structure.
IppStatus ippiDeconvLRInit_32f_C1R(IppiDeconvLR_32f_C1R* pDeconvLR, const Ipp32f* pKernel, int kernelSize, IppiSize maxRoi, Ipp32f threshold);
IppStatus ippiDeconvLRInit_32f_C3R(IppiDeconvLR_32f_C3R* pDeconvLR, const Ipp32f* pKernel, int kernelSize, IppiSize maxRoi, Ipp32f threshold);
ippi.h
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
pDeconvLR |
Pointer to the LR deconvolution state structure. |
pKernel |
Pointer to the kernel array. |
kernelSize |
Size of the kernel. |
maxRoi |
Maximum size of the image ROI, in pixels. |
threshold |
Value of the threshold level (to exclude dividing by zero). |
This function initializes the LR deconvolution state structure that is used by the ippiDeconvLR function to perform LR deconvolution of the source image. Before using the ippiDeconvLRInit function, compute the size of the structure using the ippiDeconvLRGetSize function.
ippStsNoErr |
Indicates no error. Any other value indicates an error or a warning. |
ippStsNullPtrErr |
Indicates an error when any of the specified pointers is NULL. |
ippStsSizeErr |
Indicates an error when:
|
ippStsBadArgErr |
Indicates an error when threshold is less than, or equal to 0. |