Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将有关视频中每一帧的一些信息保存到.txt文件中。
.txt
信息可以是当前帧号、特征点的位置等,
我只能找到将其写入 XML/YML 文件的方法。是否可以将这些写入 .txt 文件?如果是这样,怎么办?
提前致谢!
你必须滚动你自己的实现。C++ 文件流的基础是
#include <iostream> #include <fstream> using namespace std; void writeSomething() { ofstream outputfile; outputfile.open("data.txt"); for (int i=0; i<10;i++) outputfile << i << endl; }
您的问题不是很清楚,因此您最好对其进行编辑以明确您到底想要做什么。