How to determine OpenCV version

前端 未结 8 1109
南笙
南笙 2020-12-29 03:48

How to determine which version of OpenCV I have installed?

I am most interested in knowing a way of doing it programatically (and cross-platform), but I can

8条回答
  •  醉酒成梦
    2020-12-29 04:44

    If you also want to get build information, you can use this code:

        printf("OpenCV: %s", cv::getBuildInformation().c_str());
    

提交回复
热议问题