ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

一文详解视觉里程计轨迹评估工具-evo的用法

2021-03-09 18:59:46  阅读:658  来源: 互联网

标签:plot 轨迹 evo -- results 里程计 详解 uwb


evo是一款用于视觉里程计和slam问题的轨迹评估工具。核心功能是能够绘制相机的轨迹,或评估估计轨迹与真值的误差。支持多种数据集的轨迹格式(TUM、KITTI、EuRoC MAV、ROS的bag),同时支持这些数据格式之间进行相互转换。参考:视觉里程计的轨迹评估工具:evo

一 evo安装

打开终端,输入:

pip install evo --upgrade --no-binary evo

evo常用指令:

Metrics:

  • evo_ape - absolute pose error 绝对轨迹误差
  • evo_rpe - relative pose error 相对轨迹误差

Tools:

  • evo_traj -tool for analyzing,plotting or exporting one or more trajectories
  • evo_res -tool for compare one or multiple result files from evo_ape or evo_rpe
  • evo_fig -(experimental)tool for re-opening serialized plots(saved with --serialize_plot)
  • evo_config -tool for global settings and config file manipulation

二 Examples for evo usages

  • plot multiple trajectories

    evo_traj tum uwb-data-estimation.txt uwb-data-output.txt --ref=uwb-ground-truth.txt -p --plot_mode=xy -a
    

    在这里插入图片描述

  • calculate the absolute pose error for two trajectories using evo_ape(uwb-data-estimation is the reference (groundtruth))

    evo_ape tum uwb-data-estimation.txt uwb-data-output.txt -va --plot --plot_mode xy --save_results results/uwb.zip
    

    在这里插入图片描述在这里插入图片描述

  • evo_res can be used to compare multiple result files from the metrics, ie.:

    • print infos and statistics(defult)

    • plot the results

    • save the statistics in a table

      evo_res results/*.zip -p --save_table results/table.csv
      

在这里插入图片描述

标签:plot,轨迹,evo,--,results,里程计,详解,uwb
来源: https://blog.csdn.net/Yong_Qi2015/article/details/114595007

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有