DPM样本生成——字符转换

// DPMSample.cpp : Defines the entry point for the console application.
//


#include "stdafx.h"
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include "cv.h"
#include "cxcore.h"
#include "highgui.h"


using namespace std;
using namespace cv;
vector<string>  split(string str,string pattern);


int _tmain(int argc, _TCHAR* argv[])
{
ifstream data("list.txt");
ofstream new_txt;
new_txt.open("DATA-MODEL-all.txt",ios::app|ios::out);
string buf;
while(data)
{
if(getline(data,buf))
{
Mat img;
img=imread(buf);

char result[500];
sprintf(result,"%d %d %d %d %s",1,1,img.cols-1,img.rows-1,buf.c_str());


new_txt<<result<<endl;
}
}
new_txt.close();  
return 0;

}


//字符串分割函数//
vector<string>  split(string str,string pattern)
{
string::size_type pos;
vector<string> result;
str+=pattern;//扩展字符串以方便操作//
int size=str.size();


for(int i=0; i<size; i++)
{
pos=str.find(pattern,i);
if(pos<size)
{
string s=str.substr(i,pos-i);
result.push_back(s);
i=pos+pattern.size()-1;
}
}
return result;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值