#include <fstream>
ofstream outfile;
outfile.open("/data/opencvYolo/opencvYolo/data32.txt", ofstream::app);
outfile<<"Yolotime: "<<(double)(Yolotime-start)/CLOCKS_PER_SEC<<"s"<<endl;
outfile.close();
这个缺少每次打开文件前判断是否存在这个文件,若存在就删除了。
不然现在的情况就是每次会把数据存在这个文件的最后,无限添加。。。。