c++ 读取txt文件

2021/9/3 11:05:47

本文主要是介绍c++ 读取txt文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

void Load_GPS(const std::string gps_path, std::map<std::string, cv::Point3d> &all_gps_data)
{
    std::ifstream ifs;
    ifs.open(gps_path);
    if (!ifs.is_open())
    {
        std::cerr << "Can not open gps.txt!" << std::endl;
        exit(-1);
    }
    while (!ifs.eof())
    {
        std::string image_name;
        cv::Point3d temp_gps;
        ifs >> image_name >> std::setprecision(12) >> temp_gps.x >> temp_gps.y >> temp_gps.z;
        all_gps_data[image_name] = temp_gps;
    }
}

 



这篇关于c++ 读取txt文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程