5

I have system with installed opencv-3.0. I need to check whether IPP is enabled or not in the opencv. How can I check that ?

Deepak
  • 1,038
  • 5
  • 17
  • 44
  • Ipp is enabled in compilation time. I don't think you can. However you can compile opencv by yourself – Gilad Sep 01 '15 at 16:11
  • 1
    there is a function to print all build parameters at runtime. But I dont remember the command atm. – Micka Sep 01 '15 at 16:53

2 Answers2

6

try std::cout << cv::getBuildInformation() << std::endl;

phoenix
  • 7,988
  • 6
  • 39
  • 45
Micka
  • 19,585
  • 4
  • 56
  • 74
0

Using Python:

import cv2
print(cv2.getBuildInformation())

(print command useful to get readable output on the command line).

Joma
  • 2,334
  • 2
  • 20
  • 25