关于(int argc char **argv)

演示使用opencv显示一幅图片:

#include <iostream>
#include <core/core.hpp>
#include <highgui/highgui.hpp>
using namespace std;
using namespace cv;
void main(int argc,char **argv)
{
    Mat image=imread(argv[1]);
    imshow("Lena",image);
    waitKey();
}

 

注意读入的参数是argv[1],在命令提示符窗口运行:

 

 

posted on 2018-07-18 17:07  super_star123  阅读(242)  评论(0编辑  收藏  举报

导航