opencv 읽기 파일 경로

535 단어
코드:
void Ctry::OnTryPath()
{
	// TODO:              
	vector<string>picture_path;
	CFileDialog ldlg(TRUE, "bmp", NULL, OFN_ALLOWMULTISELECT | OFN_ENABLESIZING | OFN_HIDEREADONLY, "bmp  (*.bmp)|*.bmp|  (*.*)|*.*||", NULL);
	ldlg.m_ofn.lpstrTitle = (_T("     "));//     
	if (ldlg.DoModal() == IDOK)
	{
		POSITION lpos = ldlg.GetStartPosition();
		while (lpos != NULL)
		{
			CString lpath = ldlg.GetNextPathName(lpos);
			picture_path.push_back(LPCTSTR(lpath));
		}
	}

}

좋은 웹페이지 즐겨찾기