opencv/samples/cpp/opencv_version.cpp

33 lines
630 B
C++
Raw Normal View History

#include <opencv2/core/utility.hpp>
#include <iostream>
2012-10-17 15:12:04 +08:00
const char* keys =
{
"{ b build | | print complete build info }"
"{ h help | | print this help }"
};
int main(int argc, const char* argv[])
{
cv::CommandLineParser parser(argc, argv, keys);
if (parser.has("help"))
{
parser.printMessage();
}
else if (!parser.check())
{
parser.printErrors();
}
else if (parser.has("build"))
{
std::cout << cv::getBuildInformation() << std::endl;
}
else
{
2014-10-05 01:39:26 +08:00
std::cout << "Welcome to OpenCV " << CV_VERSION << std::endl;
}
return 0;
}