在 opencv 中检查 IPP 是否启用

check IPP is enabled or not in opencv

我已经安装了系统 opencv-3.0。我需要检查 IPP 是否在 opencv 中启用。我该如何检查?

尝试std::cout << cv::getBuildInformation() << std::endl;

使用Python:

import cv2
print(cv2.getBuildInformation())

(打印命令有助于在命令行上获得可读的输出)。