在 C++ 中使用 VS 2010 并尝试将其放入 for 循环中
String filename = "cropped_" + (ct+1);
imwrite(filename + ".jpg", img_cropped);
这些是出来的文件名:
ropped_.jpg
opped_.jpg
pped_.jpg
我该怎么做?以及如何将它们放在与源代码相同目录的文件夹中?
在 C++ 中使用 VS 2010 并尝试将其放入 for 循环中
String filename = "cropped_" + (ct+1);
imwrite(filename + ".jpg", img_cropped);
这些是出来的文件名:
ropped_.jpg
opped_.jpg
pped_.jpg
我该怎么做?以及如何将它们放在与源代码相同目录的文件夹中?
您可以使用std::stringstream
构建顺序文件名:
首先包含sstream
来自 C++ 标准库的头文件。
#include<sstream>
using namespace std;
然后在您的代码中,您可以执行以下操作:
stringstream ss;
string name = "cropped_";
string type = ".jpg";
ss<<name<<(ct + 1)<<type;
string filename = ss.str();
ss.str("");
imwrite(filename, img_cropped);
mkdir
要创建新文件夹,您可以在system
函数中使用 windows 的命令stdlib.h
:
string folderName = "cropped";
string folderCreateCommand = "mkdir " + folderName;
system(folderCreateCommand.c_str());
ss<<folderName<<"/"<<name<<(ct + 1)<<type;
string fullPath = ss.str();
ss.str("");
imwrite(fullPath, img_cropped);
for (int ct = 0; ct < img_SIZE ; ct++){
char filename[100];
char f_id[3]; //store int to char*
strcpy(filename, "cropped_");
itoa(ct, f_id, 10);
strcat(filename, f_id);
strcat(filename, ".jpg");
imwrite(filename, img_cropped); }
顺便说一句,这是@sgar91 答案的更长版本
试试这个:
char file_name[100];
sprintf(file_name, "cropped%d.jpg", ct + 1);
imwrite(file_name, img_cropped);
它们应该只进入您运行代码的目录,否则,您必须像这样手动指定:
sprintf(file_name, "C:\path\to\source\code\cropped%d.jpg", ct + 1);
由于这是谷歌搜索的第一个结果,我将使用 std::filesystem (C++17) 添加我的答案
std::filesystem::path root = std::filesystem::current_path();
std::filesystem::create_directories(root / "my_images");
for (int num_image = 0; num_image < 10; num_image++){
// Perform some operations....
cv::Mat im_out;
std::stringstream filename;
filename << "my_images"<< "/" << "image" << num_image << ".bmp";
cv::imwrite(filename.str(), im_out);
}