Sums elements in the mask applied to each element of a vector.
IppStatus ippsSumWindow_8u32f(const Ipp8u* pSrc, Ipp32f* pDst, int len, int maskSize);
IppStatus ippsSumWindow_16s32f(const Ipp16s* pSrc, Ipp32f* pDst, int len, int maskSize);
pSrc |
Pointer to the source vector. |
pDst |
Pointer to the destination vector. |
len |
Number of elements of the vector. |
maskSize |
Size of the mask. |
The function ippsSumWindow is declared in the ipps.h file. This function sets each element in the destination vector pDst as the sum of maskSize elements of the source vector pSrc. The computation is performed as follows:
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when one of the specified pointers is NULL. |
ippStsMaskSizeErr |
Indicates an error when maskSize is less than or equal to 0. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.