OpenCV 4.12.0
开源计算机视觉
加载中...
搜索中...
无匹配项
samples/cpp/cout_mat.cpp

一个演示 cv::Mat 的串行输出功能的示例

/*
*
* cvout_sample 只是演示 cv::Mat 的串行输出功能
* 也就是说,cv::Mat M(...); cout << M; 现在可以工作了。
*
*/
#include "opencv2/core.hpp"
#include <iostream>
using namespace std;
using namespace cv;
static void help(char** argv)
{
cout
<< "\n------------------------------------------------------------------\n"
<< " 此程序展示了 cv::Mat 的串行输出功能\n"
<< "也就是说,cv::Mat M(...); cout << M; 现在可以工作了。\n"
<< "输出可以格式化为 OpenCV, matlab, python, numpy, csv 和 \n"
<< "C 风格。用法:\n"
<< argv[0]
<< "\n------------------------------------------------------------------\n\n"
<< endl;
}
int main(int argc, char** argv)
{
cv::CommandLineParser parser(argc, argv, "{help h||}");
if (parser.has("help"))
{
help(argv);
return 0;
}
Mat I = Mat::eye(4, 4, CV_64F);
I.at<double>(1,1) = CV_PI;
cout << "I = \n" << I << ";" << endl << endl;
Mat r = Mat(10, 3, CV_8UC3);
randu(r, Scalar::all(0), Scalar::all(255));
cout << "r (default) = \n" << r << ";" << endl << endl;
cout << "r (matlab) = \n" << format(r, Formatter::FMT_MATLAB) << ";" << endl << endl;
cout << "r (python) = \n" << format(r, Formatter::FMT_PYTHON) << ";" << endl << endl;
cout << "r (numpy) = \n" << format(r, Formatter::FMT_NUMPY) << ";" << endl << endl;
cout << "r (csv) = \n" << format(r, Formatter::FMT_CSV) << ";" << endl << endl;
cout << "r (c) = \n" << format(r, Formatter::FMT_C) << ";" << endl << endl;
Point2f p(5, 1);
cout << "p = " << p << ";" << endl;
Point3f p3f(2, 6, 7);
cout << "p3f = " << p3f << ";" << endl;
vector<float> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
cout << "shortvec = " << Mat(v) << endl;
vector<Point2f> points(20);
for (size_t i = 0; i < points.size(); ++i)
points[i] = Point2f((float)(i * 5), (float)(i % 7));
cout << "points = " << points << ";" << endl;
return 0;
}
如果数组没有元素,则返回 true。
int64_t int64
n 维密集数组类
定义 mat.hpp:830
_Tp & at(int i0=0)
返回指定数组元素的引用。
由坐标 x、y 和 z 指定的 3D 点的模板类。
定义 types.hpp:255
void randu(InputOutputArray dst, InputArray low, InputArray high)
生成一个单一的均匀分布的随机数或一个随机数数组。
#define CV_64F
Definition interface.h:79
CV_8UC3
#define CV_8UC3
String format(const char *fmt,...)
返回使用类似 printf 的表达式格式化的文本字符串。
#define CV_PI
定义 cvdef.h:380
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
定义 core.hpp:107
STL 命名空间。