由于某种原因,当我运行此代码时,我遇到了段错误。它的作用是从输入中读取PGM文件并将其水平翻转。
我认为这是令人讨厌的代码:
for (i = pixels.size()-1; i = 0; i--){ // this loop takes the final value of the original vector and puts it into the first spot in the new hflip vector, and continues onwards
flippy.push_back(pixels[i]);
}
cout << "P2" << endl << numColumns << " " << numRows << endl << "255" << endl;
while (p < pixTotal){
for (int z = 0; z < numRows; z++){
cout << flippy[p] << " ";
}
cout << endl;
p++;
}
最佳答案
我假设向量pixels
代表矩阵中的每一行。然后,要翻转向量中的所有值,您可以像这样简单地使用std::reverse_copy
:
std::vector<uint8_t> flippy;
flippy.resize(pixels.size());
std::reverse_copy(pixels.begin(), pixels.end(), flippy.begin());
您需要为每一行执行此操作。然后,您可以在每次反转后输出每个翻转的行,这样向量“ flippy”仅表示操作中的当前行。