opencv 各种输出格式
程序员文章站
2024-01-23 23:24:58
...
#include<opencv2/opencv.hpp>
#include<iostream>
using namespace std;
using namespace cv;
int main() {
Mat M(2, 2, CV_8UC3);
randu(M, Scalar::all(0), Scalar::all(255));
//输出格式
cout << "输出默认形式:" << endl;
cout << M << endl;
cout << "输出python格式:" << endl;
cout << format(M,Formatter::FMT_PYTHON) << endl;
cout << "输出逗号分隔(CSV)格式:" << endl;
cout << format(M, Formatter::FMT_CSV) << endl;
cout << "输出NUMPY格式:" << endl;
cout << format(M, Formatter::FMT_NUMPY) << endl;
cout << "输出C语言格式:" << endl;
cout << format(M, Formatter::FMT_C) << endl;
system("pause");
return 0;
}
上一篇: 用CSS3写一个旋转魔方相册
下一篇: 在VS中配置调用FFmpeg开发环境