Confirm that Intel IPP loads in OpenCV 2x
What is the preferred method of confirming that Intel's Integrated Performance Primitives were correctly linked and available at runtime?
For OpenCV 1.x I used to run:
cvGetModuleInfo()
Which would display intel's integrated performance primitive DLLs that were loaded at runtime and I would therefore know that IPP was correctly installed. Now though, I am using OpenCV 2.4.3 statically linked against Intel's Integrated Performance Primitives 7.1. cvGetModuleInfo()
doesn't indicate that IPP 7.1 is available.
Is that because this is no longer the right way to check? Or is something else going on?