// TODO: Add your command handler code here
	CImageDoc*pDoc=GetDocument();
	pDoc->save_curregionID();
	std::ifstream ID_file("E:\\all_ID.txt",ios::in  );
	std::ifstream label_file("E:\\all_label.txt",ios::in  );
	if (!ID_file.is_open()) 
		AfxMessageBox("Unable to open ID_file") ;
	if (!label_file.is_open()) 
		AfxMessageBox("Unable to open label_file") ;
	int m,n;
	while(ID_file)
    {
		ID_file >> m ;
		label_file >> n;
        pDoc->classify_region(m,n);
    }

  

相关文章:

  • 2022-01-14
  • 2021-09-13
  • 2021-08-28
  • 2021-12-14
  • 2021-07-25
  • 2022-12-23
猜你喜欢
  • 2021-05-22
  • 2021-11-17
相关资源
相似解决方案