#include "opencv2/opencv.hpp"
using namespace cv;
int main(int argc,char ** argv)
{
Mat img = imread(argv[1], -1);
if (img.empty()) return -1;
namedWindow("Example1", cv::WINDOW_AUTOSIZE);
imshow("Example1", img);
waitKey(0);
destroyWindow("Example1");
return 0;
}
想问一下这串代码里面imread(argv[1], -1)里面的两个参数是什么意思吼?我在cpp同级目录下放了张jpg,但还是读不到。