在使用opencv进行图像处理的过程中,经常会涉及到将文件中的数据读入到cv::Mat中,或者将cv::Mat中的数据写入到txt文件中。
下面就介绍一种我常用的将cv::Mat中的数据写入到txt文件中的方法,具体见代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
void writeMatToFile(cv::Mat& m, const char * filename) { std::ofstream fout(filename); if (!fout) { std::cout << "File Not Opened" << std::endl; return ; } for ( int i = 0 ; i<m.rows; i + + ) { for ( int j = 0 ; j<m.cols; j + + ) { fout << m.at< float >(i, j) << "\t" ; } fout << std::endl; } fout.close(); } |
以上所述是小编给大家的OpenCVcv::Mat中的数据按行列写入txt文件中实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,在此也非常感谢大家对服务器之家网站的支持!
原文链接:https://blog.csdn.net/guduruyu/article/details/71640463