gpt4 book ai didi

c++ - 用日期时间命名输出文件

转载 作者:太空宇宙 更新时间:2023-11-03 22:57:48 25 4
gpt4 key购买 nike

我是编程初学者。我做了一个人脸检测项目(检测人脸,记录结果,然后将其保存到输出文件中)。我宁愿用日期和时间命名它的结果,而不是用“MyVideo”。但我不知道如何,任何人都可以帮助我?谢谢 b4。

这是我的代码。

void rekamwajah(){
double nBaris = cap.get(CV_CAP_PROP_FRAME_HEIGHT);
double nKolom = cap.get(CV_CAP_PROP_FRAME_WIDTH);
cv::Size frameSize(static_cast<int>(nKolom), static_cast<int>(nBaris));

if (!rekam.isOpened()) //if not intialize the VideoWriter successfully
{
rekam.open ("K:\\MyVideo.avi", CV_FOURCC('M','J','P','G'), 20, frameSize, true);
}

bool bSuccess = cap.read(framewarna);

if (!bSuccess) //if not success, break loop
{
MessageBox::Show("ERROR: Cannot read a frame from video file");
return;
}
rekam.write(framewarna); //writer the frame into the file
timer1->Enabled = true;


}

最佳答案

您需要将日期和时间作为字符串获取,然后将此字符串用作您的文件名。您可以在此处找到一个示例: https://stackoverflow.com/a/16358111/137261

#include <iostream>
#include <iomanip>
#include <ctime>

int main()
{
auto t = std::time(nullptr);
auto tm = *std::localtime(&t);
std::cout << std::put_time(&tm, "%d-%m-%Y %H-%M-%S") << std::endl;
}

关于c++ - 用日期时间命名输出文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25636597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com