Visible to Intel only — GUID: GUID-601FBE9C-51C8-4605-A799-7FFB5BA0C4BE
Visible to Intel only — GUID: GUID-601FBE9C-51C8-4605-A799-7FFB5BA0C4BE
DeconvFFT
Performs FFT deconvolution of an image.
Syntax
IppStatus ippiDeconvFFT_32f_C1R(const Ipp32f* pSrc, int srcStep, Ipp32f* pDst, int dstStep, IppiSize roiSize, IppiDeconvFFTState_32f_C1R* pDeconvFFTState);
IppStatus ippiDeconvFFT_32f_C3R(const Ipp32f* pSrc, int srcStep, Ipp32f* pDst, int dstStep, IppiSize roiSize, IppiDeconvFFTState_32f_C3R* pDeconvFFTState);
Include Files
ippi.h
Domain Dependencies
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
Parameters
pSrc |
Pointer to the source image ROI. |
srcStep |
Distance in bytes between starts of consecutive lines in the source image. |
pDst |
Pointer to the destination image ROI. |
dstStep |
Distance in bytes between starts of consecutive lines in the destination image. |
roiSize |
Size of the source and destination image ROI. |
pDeconvFFTState |
Pointer to the FFT deconvolution state structure. |
Description
This function operates with ROI (see Regions of Interest in Intel IPP).
This function performs deconvolution of the source image pSrc using FFT with parameters specified in the FFT deconvolution state structure pDeconvFFTState and stores results to the destination image pDst. The FFT deconvolution state structure must be initialized by calling the function DeconvFFTInit beforehand.
Return Values
ippStsNoErr |
Indicates no error. Any other value indicates an error or a warning. |
ippStsNullPtrErr |
Indicates an error condition if one of the specified pointers is NULL. |