Calculates the dot product of taps vector and columns of the specified set of strows.
IppStatus ippiDotProdCol_32f_L2(const Ipp32f** const ppSrcRow[], const Ipp32f* pTaps, int tapsLen, Ipp32f* pDst, int width);
ppSrcRow |
Pointer to the set of strows. |
pTaps |
Pointer to the taps vector. |
tapsLen |
Length of taps vector, is equal to the number of strows. |
pDst |
Pointer to the destination strow. |
width |
Width of the source and destination strows. |
The function ippiDotProdCol is declared in the ippi.h file.
This function calculates the dot product of filter taps vector pTaps and columns of the specified set of the strows ppSrcRow. The computations are performed in accordance with the following formula:
It is useful for external vertical filtering pipeline implementation.
ippStsNoErr |
Indicates no error. Any other value indicates an error. |
ippStsNullPtrErr |
Indicates an error condition if one of the specified pointers is NULL. |
ippStsSizeErr |
Indicates an error condition if width is less than or equal to 0. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.