当前位置:网站首页>ORB SLAM3加载Vocabulary更快ORBvoc.bin
ORB SLAM3加载Vocabulary更快ORBvoc.bin
2022-08-02 20:16:00 【My.科研小菜鸡】
ORBSLAM3_1.0版本词袋还是ORBvoc.txt,加载时间比较慢,这里教你修改成ORBvoc.bin加载,1秒内完成加载。
将ORBvoc.bin拷贝到Vocabulary文件夹下,ORBvoc.bin百度云盘下载地址 密码idr0,记得解压缩。
修改ORB_SLAM3/src的System.cc的82行:
mpVocabulary = new ORBVocabulary();
//bool bVocLoad = mpVocabulary->loadFromTextFile(strVocFile); //txt加载
bool bVocLoad = mpVocabulary->loadFromBinaryFile(strVocFile); //bin加载
- ORB_SLAM3/Thirdparty/DBoW2/DBoW2/的TemplatedVocabulary.h里增加函数:
/**函数声明 * Loads the vocabulary from a binary file * @param filename */
bool loadFromBinaryFile(const std::string &filename);
// --------------------------------------------------------------------------
//函数定义,可以放在对应的loadFromTextFile函数下面
template<class TDescriptor, class F>
bool TemplatedVocabulary<TDescriptor,F>::loadFromBinaryFile(const std::string &filename) {
fstream f;
f.open(filename.c_str(), ios_base::in|ios::binary);
unsigned int nb_nodes, size_node;
f.read((char*)&nb_nodes, sizeof(nb_nodes));
f.read((char*)&size_node, sizeof(size_node));
f.read((char*)&m_k, sizeof(m_k));
f.read((char*)&m_L, sizeof(m_L));
f.read((char*)&m_scoring, sizeof(m_scoring));
f.read((char*)&m_weighting, sizeof(m_weighting));
createScoringObject();
m_words.clear();
m_words.reserve(pow((double)m_k, (double)m_L + 1));
m_nodes.clear();
m_nodes.resize(nb_nodes+1);
m_nodes[0].id = 0;
char buf[size_node]; int nid = 1;
while (!f.eof()) {
f.read(buf, size_node);
m_nodes[nid].id = nid;
// FIXME
const int* ptr=(int*)buf;
m_nodes[nid].parent = *ptr;
//m_nodes[nid].parent = *(const int*)buf;
m_nodes[m_nodes[nid].parent].children.push_back(nid);
m_nodes[nid].descriptor = cv::Mat(1, F::L, CV_8U);
memcpy(m_nodes[nid].descriptor.data, buf+4, F::L);
m_nodes[nid].weight = *(float*)(buf+4+F::L);
if (buf[8+F::L]) {
// is leaf
int wid = m_words.size();
m_words.resize(wid+1);
m_nodes[nid].word_id = wid;
m_words[wid] = &m_nodes[nid];
}
else
m_nodes[nid].children.reserve(m_k);
nid+=1;
}
f.close();
return true;
}
- 之后重新编译DBoW2和整个ORBSLAM3程序需要注意的是只编译ros模块不行。
边栏推荐
- Bena's life cycle
- 9,共模抑制比一-不受输入信号中共模波动的影响。【如何分析共模CM抑制比。】
- 训练双塔检索模型,可以不用query-doc样本了?明星机构联合发文
- 六石管理学:入门机会只有一次,先把产品做好
- js Fetch返回数据res.json()报错问题
- 接口测试常用工具及测试方法(入门篇)
- 【21天学习挑战赛】冒泡排序与插入排序
- 用了TCP协议,就一定不会丢包吗?
- golang源码分析之geoip2-golang
- Tencent YunMeng every jie: I experienced by cloud native authors efficiency best practices case
猜你喜欢
基于 outline 实现头像剪裁以及预览
Implement fashion_minst clothing image classification
unittest自动化测试框架总结
LM小型可编程控制器软件(基于CoDeSys)笔记二十五:plc的数据存储区(数字量输入通道部分)
SQL Server安装教程
J9 Digital Currency Theory: Identifying Web3's New Scarcity: Open Source Developers
谷歌竞价机器学习如何去理解?
WPF development through practical 】 【 automatic production management platform
Day35 LeetCode
pytorch的tensor创建和操作记录
随机推荐
Li Mu hands-on deep learning V2-BERT pre-training and code implementation
The Orsay in Informatics (1256: Bouquet for Algernon)
【SLAM】DM-VIO(ros版)安装和论文解读
基于“无依赖绝对定位”实现的圣杯三栏布局
C#异步和多线程
你所不知道的C#中的细节
ECCV 2022 | 通往数据高效的Transformer目标检测器
数据库分析与优化
php 单引号 双引号 -> => return echo
56.【全局变量和局部变量专题】
A brief discussion on the transformation of .NET legacy applications
Flink Yarn Per Job - 创建启动Dispatcher RM JobManager
Solve the docker mysql can't write Chinese
2022年金九银十,Android面试中高频必问的问题汇总
LeetCode 622 设计循环队列[数组 队列] HERODING的LeetCode之路
李沐动手学深度学习V2-BERT预训练和代码实现
go——垃圾回收机制(GC)
Informatics Olympiad All-in-One (1260: [Example 9.4] Intercepting Missiles (Noip1999))
博客主页rrs代码
.NET performance optimization - you should set initial size for collection types