python import cv2 as cv print(cv.__version__) c++ //查看版本 #include <opencv2/opencv.hpp> using namespace std; int main() { printf("%d.%d.%d", cv::getVersionRevision(), cv::getVersionMinor(), cv::getVersionMajor()); return 0; }