#include <Windows.h> //system头文件
#include <direct.h> //_chdir头文件
#include <iostream> //cout头文件
#define picNum 228
using
namespace std; //cout 命名空间
void main()
{
?
char path[]="d:/vs/scene_text"; //指定cmd运行目录
if (_chdir(path)==0)
{
for (int picIdx=1;picIdx<=picNum;picIdx++)
{
char cmd_command[100];
sprintf(cmd_command,"scenetext ./classifier1.txt ./imgs/%d.jpg ./results/",picIdx); //将指令输入cmd_command字符串
system(cmd_command);//执行指令
}
?
}
else
{
printf("指定的路徑不存在, 或是路徑錯誤!\n");
}
?
}
? ?
#include <stdlib.h> /* system, NULL, EXIT_FAILURE */
这个头文件也可用于调用这些命令
原文:http://www.cnblogs.com/Daringoo/p/4445185.html