Developer Reference for Intel® Integrated Performance Primitives
Compute the size of the work buffer for the ippiWinHamming or ippiWinHammingSep function.
IppStatus ippiWinHammingGetBufferSize (IppDataType dataType, IppiSize roiSize, int* pSize);
IppStatus ippiWinHammingSepGetBufferSize (IppDataType dataType, IppiSize roiSize, int* pSize);
ippi.h
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
dataType |
Data type for the Bartlett window function. Possible values are: ipp8u, ipp16u, or ipp32f. |
roiSize |
Size, in pixels, of the image ROI. |
pSize |
Pointer to the computed size of the external work buffer, in bytes. |
The ippiWinHammingGetBufferSize and ippiWinHammingSepGetBufferSize functions compute the size, in bytes, of the external work buffer needed for the ippiWinHamming or ippiWinHammingSep function. The result is stored in the pSize parameter.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when pSize is NULL. |
ippStsSizeErr |
Indicates an error when roiSize has a field with a value less than 3. |
ippStsNumChannelsErr |
Indicates an error when dataType has an illegal value. |