C++ 按行读入文本文件

最近在学习TensorRT,遇到一个问题,就是自己写的层中有些参数通过函数没法传入,如Renfindet SSD层需要的NMS阈值和置信度阈值都是写死在里面,无法又外界传入。所以想了个傻办法:将界面传入的参数保存得文本文件中,然后通过读取文本文件的字符串,将阈值使用extern 参数录入detect_out层,进行结果检测;

下面的代码是对文本文件进行解析,获取NMS阈值和置信度阈值;

float find_str(string str_src,string str_dest)
{
    if (!str_src.empty())
    {
        int index = 0;
        while( (index = str_src.find(' ',index)) != string::npos)
        {
         str_src.erase(index,1);
        }
        int end = str_src.find_first_not_of(str_dest);
        if (end != -1){
//          cout<<"3:"<<T.substr(end+1,-1)<<endl;
          return atof(str_src.substr(end+1,-1).c_str());
        }
        else{
            return 0.;
        }
    }
}

void Get_score()
{
    // 定义输入文件流类对象infile
    ifstream infile("/home/ubuntu/exsdcard/move_dection/config/configure.ini",ios::in);

    if(!infile)
    {  // 判断文件是否存在
      cerr<<"open error."<<endl;
//      exit(); // 退出程序
    }

    char str[255]; // 定义字符数组用来接受读取一行的数据
    float nms_score = 0.;
    float conf_score = 0.;
    while(infile)
    {
        infile.getline(str,255);  // getline函数可以读取整行并保存在str数组里
        string src_string = str;
        cout<<str<<endl;
        cout<<src_string<<endl;

        if(nms_score == 0.){
            nms_score = find_str(src_string,"NmsThresh");
            cout<<nms_score<<endl;
        }
        if(conf_score == 0.){
            conf_score = find_str(src_string,"ClassesThresh");
            cout<<conf_score<<endl;
        }
    }
    thresh.conf_score = conf_score;
    thresh.nms_score = nms_score;
}

补充:定义的结构体

typedef struct Obj_Score_
{
    float conf_score;
    float nms_score;
}Obj_score;

 对结构体实例化:

Obj_score thresh;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

猫猫与橙子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值