创建Mat// 5行3列随机值
Mat img = Mat(5, 3, CV_8UC3);
randu(img, Scalar::all(0), Scalar::all(255));
// 2行2列固定值
Mat img1(Size(2
2021-04-13