Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

IppsMean

carlo-turri
Beginner
479 Views

Hi, as for the new IPP 7 XE2011 no more any ippsMean and particular ippsMeanColumn are exististing , are themdeprecatedor changed with others or what else ?
Thanks
Cartu

0 Kudos
1 Reply
Vladimir_Dudnik
Employee
479 Views
Hello,

ippsMean functions family available in IPP 7.0 signal processing library (ipps.h), see the list below

IPP speech recognition library was removed from IPP 7.0with all its functionality, including ippsMeanColumn functions

/* /////////////////////////////////////////////////////////////////////////////
// Names: ippsMean
// Purpose: compute average value of all elements of the source vector
// Parameters:
// pSrc pointer to the source vector
// pMean pointer to the result
// len length of the source vector
// scaleFactor scale factor value
// Return:
// ippStsNullPtrErr pointer(s) to the vector or the result is NULL
// ippStsSizeErr length of the vector is less or equal 0
// ippStsNoErr otherwise
*/
IPPAPI(IppStatus,ippsMean_32f, (const Ipp32f* pSrc,int len,Ipp32f* pMean,
IppHintAlgorithm hint))
IPPAPI(IppStatus,ippsMean_32fc,(const Ipp32fc* pSrc,int len,Ipp32fc* pMean,
IppHintAlgorithm hint))
IPPAPI(IppStatus,ippsMean_64f, (const Ipp64f* pSrc,int len,Ipp64f* pMean))
IPPAPI(IppStatus,ippsMean_16s_Sfs, (const Ipp16s* pSrc,int len,
Ipp16s* pMean,int scaleFactor))
IPPAPI(IppStatus,ippsMean_16sc_Sfs,(const Ipp16sc* pSrc,int len,
Ipp16sc* pMean,int scaleFactor))
IPPAPI(IppStatus,ippsMean_64fc,(const Ipp64fc* pSrc,int len,Ipp64fc* pMean))
IPPAPI(IppStatus,ippsMean_32s_Sfs,(const Ipp32s *pSrc,int len,Ipp32s *pMean,
int scaleFactor ) )


Regards,
Vladimir
0 Kudos
Reply