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

installation half way there

yeahdixon
Beginner
345 Views
I am using OpenCv on windows with IPP. OpenCV works fine, but I get the following error when I try and compile IPP functions
TEST error LNK2001: unresolved external symbol "enum IppStatus __stdcall ippiCopy_8u_C3R(unsigned char const *,int,unsigned char *,int,struct IppiSize)" (?ippiCopy_8u_C3R@@$$J224YG?AW4IppStatus@@PBEHPAEHUIppiSize@@@Z)
just declaring :

Ipp8u *ipprgb

works fine. Any ideas on what is wrong.

0 Kudos
1 Reply
overspawn
Beginner
345 Views
(?ippiCopy_8u_C3R@@$$J224YG?AW4IppStatus@@PBEHPAEHUIppiSize@@@Z)

looks like C++ mangled symbol name.

Try to add

extern "C"
0 Kudos
Reply