⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 interface.cpp

📁 基于多假设的地图匹配算法。程序能够根据车辆在行驶过程中收集到的GPS/DR数据正确得到当前车辆所在的道路位置。
💻 CPP
字号:
/******************************************************************************    File Name:    common/Interface.cpp    Description:  default implementations of the framework******************************************************************************//******************************************************************************    Author:       alfred.liushu@gmail.com	    Upadate:      2008/09/17  File founded    Copyright 2008-2009 Robot Lab., Dept.of Automation, Tsinghua University******************************************************************************/#include "../map/LoadSubMap.h"#include "../common/Interface.h"/******************************                   Default implementations of the framework  ***************************************************//*Constructor*/Interface::Interface():curTime(0){    return;}/*Destructor*/Interface::~Interface(){    return;}/*Load submap from file*/RETCHECK Interface::LoadSubMapFile(const char* mapPath){    return LoadSubMap(mapPath, GPSCenter, submap);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -