'check IPP is enabled or not in opencv
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 ?
Solution 1:[1]
try std::cout << cv::getBuildInformation() << std::endl;
Solution 2:[2]
Using Python:
import cv2
print(cv2.getBuildInformation())
(print command useful to get readable output on the command line).
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | phoenix |
Solution 2 | Joma |