OpenCV使用Mat创建矩阵并输出
#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc.hpp>#include <iostream>using namespace std;using namespace cv;//包含cv命名空间int main(){Mat r = Mat(10, 4, CV_8UC2)
·
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
using namespace std;
using namespace cv;//包含cv命名空间
int main()
{
Mat r = Mat(10, 4, CV_8UC2);
randu(r, Scalar::all(0), Scalar::all(255));
cout << "r(OpenCV默认风格)" << r << ";" << endl;
return 0;
}
其中10是行数,4是列数,每行的元素数由列数和CV_8UC2决定。
因为CV_8UC2表示使用8位的unsigned char型,每个像素是由二个元素组成的,故每行有4*2=8个数据。
更多推荐
已为社区贡献2条内容
所有评论(0)