MFC调整文件夹下的图片到指定数目

背景:我是用工业相机在帧率为100的情况下,保存相机捕获的图像,1s100张左右,现在图片已经按s分类保存到了不同的文件夹,我需要做的是把每一秒的图片都调整到100张,如果多于100张,则在帧间隔较小的地方删除一个图片,直到图片为100张;如果少于100张,则在帧间隔较大的地方插入一个图片,直到图片为100张。
在这里插入图片描述
在这里插入图片描述

建议大家把定义变量放到循环外面,本例中未做到这一点

void CFileSeparationDlg::OnBnClickedButton3()//调帧
{
	CString rootDir;
	GetDlgItemText(IDC_EDIT3, rootDir);
	vector<CString> vFilePathList;
	CFileFind finder;
	std::vector <CString>  imgNames;//用来保存图片的名字
	CString str;
	bool bFind = finder.FindFile(rootDir + "\\"+"*.*");
	while (bFind)
	{
		bFind = finder.FindNextFile();
		if (finder.IsDots())
		{
			continue;
		}
		if (finder.IsDirectory())//是文件夹
		{
			CString str=finder.GetFileName();//文件夹名称
			//MessageBox(str);
			vFilePathList.push_back(str);

		}
	}
	for (int i = 0; i < vFilePathList.size(); i++)
	{
		CString subDir = rootDir + "\\" + vFilePathList.at(i);
		int     j = 0;//记录子文件夹中文件个数
		//MessageBox(subDir);
		bool   ret = finder.FindFile(subDir+"\\"+"*.*");
		
		while (ret)
		{
			ret = finder.FindNextFile();
			if (finder.IsDots() || finder.IsDirectory())
			{
				continue;
			}
			j++;
		}
	//	CString a ;
		//a.Format(_T("%d"),j);
		//MessageBox(a);
		/*CString text;
		GetDlgItemText(IDC_EDIT1, text);*/
		USES_CONVERSION;
		char*fileName = T2A(subDir);//读取需要分离的图片的路径CString->char*		
		readImgNamefromFile(fileName, imgNames);//读入图片名字到数组
	//	MessageBox(imgNames[0]);
		//CString str;
		//MessageBox(str);
		int Length = imgNames.size();//获取图片名字数组长度
		//MessageBox(Length);
		//CString csPath;//保存图片的路径
		string picture;//图片名字数组CString->string
		string  sttSave;//保存时的图片路径
		
		std::vector <int>  deValue;//帧ID
		int deValue2;
		int subtract;//帧差
		//int q = 0;
		std::vector <int>  Subtract;//帧差容器

		string text2 = CT2A(subDir.GetString());//需要分离的图片的路径CString->string
		for (int g = 0; g < Length; g++)//,q++)
		{
			
			picture = CT2A(imgNames[g].GetString());//图片名字数组CString->string
					
			cv::Mat img = cv::imread(text2 + "\\" + picture);//从指定路径读取图片,不能用fileName + "\\\\" + picture;因为filename是char*
			//MessageBox(imgNames[g]);
			//cv::imshow("ImageShow", img);//opencv显示图片
			int p = imgNames[g].GetLength();//每一个图片名字的长度
			//str.Format(_T("%d"), p);
			
			int t = imgNames[g].Find(_T("#"));
			int u = imgNames[g].Find(_T("."));	
			//str = imgNames[g].Mid(p - 9, 4);//截取图片时间后四位//str = str.Mid(p-9, p - 5);//去掉图片名字后缀
			str = imgNames[g].Mid(t+1, u-t-1);
		//	MessageBox(str);
			deValue2= _ttoi(str);//把时间后四位转为int
			deValue.push_back(deValue2);//把时间后四位存入容器
					
			
		}
		for (int n = 0; n < deValue.size()-1; n++)
		{
			subtract = deValue.at(n+1) - deValue.at(n);
			Subtract.push_back(subtract);	
		}
			if (Length > 100)
			{

		vector<int>::iterator smallest = std::min_element(std::begin(Subtract), std::end(Subtract));
		int a = *smallest;
		int b = std::distance(std::begin(Subtract), smallest);
		
		      
		       if (b == 0)//如果时间差值最小值出现在第1张图片和第二张图片,删第二张图片,避免最小值一直出现在第1张图片和第二张图片之间
				{
					CString strSourcePath= subDir+ "\\" + imgNames[b+1];
					//MessageBox(strSourcePath);
					CFile    TempFile;
					//MessageBox(_T("b=0"));
					TempFile.Remove(strSourcePath);
				
			    }
				else if (b>0&&b< Length - 2)
				{
					if (deValue[b + 1] - deValue[b - 1] > deValue[b + 2] - deValue[b])
					{
						//删除b位置上的图片
						CString strSourcePath = subDir + "\\" + imgNames[b];
						//MessageBox(strSourcePath);
						CFile    TempFile;
						//MessageBox(_T("0<b<length-2-1"));
						TempFile.Remove(strSourcePath);
					  }
					else
					{
						//删除b+1位置上的图片
						CString strSourcePath = subDir + "\\" + imgNames[b+1];
						CFile    TempFile;
						//MessageBox(_T("0<b<length-2-2"));
						TempFile.Remove(strSourcePath);

					}

				}
				else //如果时间差值最小值出现在最后1张图片和倒数第二张图片,删倒数第二张图片,避免最小值一直出现在最后1张图片和倒数第二张图片之间
				{
					CString strSourcePath = subDir + "\\"+imgNames[b];
					//MessageBox(strSourcePath);
					CFile    TempFile;
					//MessageBox(_T("b=length-2"));
					TempFile.Remove(strSourcePath);
				}
				i--;
			}
			if (Length <100&& Length>1)
			{					
				vector<int>::iterator biggest = std::max_element(std::begin(Subtract), std::end(Subtract));
			int a = *biggest;
			int b = std::distance(std::begin(Subtract), biggest);
				//复制b位置处的图片
				//Mat img = imread();
			if (a > 1) {
				string picture = CT2A(imgNames[b].GetString());
				cv::Mat img = cv::imread(text2 + "\\" + picture);
				//imshow("111",img);
				//imwrite();
				//MessageBox(imgNames[b]);
				int p = imgNames[b].GetLength();//每一个图片名字的长度

				int t = imgNames[b].Find(_T("#"));
				int u = imgNames[b].Find(_T("."));
				CString  str2 = imgNames[b].Mid(0, t + 1);
				//CString   str3 = imgNames[b].Mid(p - 9, 4);
				CString   str3 = imgNames[b].Mid(t + 1, u - t - 1);

				int newName = _ttoi(str3);
				newName = newName + Subtract[b] / 2;

				/*CString sr2;
				sr2.Format(_T("%d"), b);*/
				CString newName2;
				newName2.Format(_T("%d"), newName);
				/*if (newName2.GetLength() == 1)
				{
					newName2 = _T("000") + newName2;
				}
				if (newName2.GetLength() == 2)
				{
					newName2 = _T("00") + newName2;
				}
				if (newName2.GetLength() == 3)
				{
					newName2 = _T("0") + newName2;
				}*/

				//newName2 = newName2 + ".jpeg";
				String newPicturePath = text2 + "\\" + CT2A(str2.GetString()) + CT2A(newName2.GetString());
				String newPicturePath2 = newPicturePath + ".bmp";
				imwrite(newPicturePath2, img);
				i--;
			}
			else {
				break;
			}
			}				
	}	
	MessageBox(_T("调帧操作完成!!!!!"));
}
void readImgNamefromFile(char* fileName, vector <CString> &imgNames)

{

	// vector清零 参数设置

	imgNames.clear();

	WIN32_FIND_DATA file;

	int i = 0;

	char tempFilePath[MAX_PATH + 1];

	char tempFileName[50];

	// 转换输入文件名

	sprintf_s(tempFilePath, "%s/*", fileName);

	// 多字节转换

	WCHAR   wstr[MAX_PATH] = { 0 };

	MultiByteToWideChar(CP_ACP, 0, tempFilePath, -1, wstr, sizeof(wstr));

	// 查找该文件待操作文件的相关属性读取到WIN32_FIND_DATA

	HANDLE handle = FindFirstFile(wstr, &file);

	if (handle != INVALID_HANDLE_VALUE)

	{

		FindNextFile(handle, &file);

		FindNextFile(handle, &file);

		// 循环遍历得到文件夹的所有文件名	

		do

		{

			sprintf_s(tempFileName, "%s", fileName);

			imgNames.push_back((file.cFileName));

		//	imgNames[i].Insert(0, 1);

			i++;

		} while (FindNextFile(handle, &file));

	}

	FindClose(handle);

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值