欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
}
opencv 各种输出格式
相关标签: opencv 输出格式