一个高级概述是,'CFile 文件的'file.write()' 方法被调用为每个单独的整数数据值(第 9 行)以及第 12 行,我在其中将逗号写入文件。
这意味着对于 327,680 个输入数据整数,有 2*327,680 = 655,360 个 file.write() 调用。因此,代码非常慢,因此,代码需要 3 秒才能创建一个 csv 文件。如何提高代码的效率?
注意:我无法更改代码的任何声明。我必须使用CFile。此外,pSrc 属于 uint_16_t 类型,包含我要存储在 .csv 文件中的数据。数据范围为 0 - 3000 个整数值。
1 CFile file;
2 int mWidth = 512;
3 int mHeight = 640;
4 UINT i = 0;
5 char buf[80];
6 UINT sz = mHeight * mWidth; //sz = 327,680
7 while (i < sz) {
8 sprintf_s(buf, sizeof(buf), "%d", pSrc[i]);
9 file.Write(buf, strlen(buf));
10 i++;
11 if (i < sz)
12 file.Write(",", 1);
13 if (i % mWidth == 0)
14 file.Write("rn", 2);
15 }
所有值都输出在 640x512 .csv文件中,其中包含表示摄氏度的整数。
刚想通!下面是似乎可以完成工作的实现。
int sz = mHeight * mWidth;
std::string uniqueCSV = "Frame " + to_string(miCurrentCSVImage + 1) + ".csv";
std::string file = capFile + "/" + uniqueCSV;
std::ofstream out;
out.open(file);
std::string data = "";
int i = 0;
while (i < sz) {
data += to_string(pSrc[i]);
i++;
if (i < sz)
data += ",";
if (i % mWidth == 0)
data += "n";
}
out << data;
out.close();
miCurrentCSVImage++;
试试这个怎么样 使用整行大小的字符串
然后在每次迭代时将数据添加到 buf 和一个逗号(通过将整行连接到 BUB)以及当您到达
if (i % mWidth == 0)
将整行写到 CFile 并使用清除您的 buf
像这样的东西
UINT sz = mHeight * mWidth; std::string line = "";
while (int i < sz) { line += std::to_string(pSrc[i])) + ','; i++;
if (i % mWidth == 0) {
file.Write(line.c_str(), line.size());
file.Write("rn", 2);
line = ""; } }