自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(8)
  • 资源 (3)
  • 收藏
  • 关注

原创 open-vins-学习记录2-各个构造函数

先看estimator_config.yaml设置为true的部分。

2024-09-03 19:25:43 509

原创 广度优先搜索 - 深度优先搜索

#include<stack> #include<iostream> using namespace std; //定义二叉树的节点 struct Node{ int val; Node* left; Node* right; Node(int val_):val(val_),left(nullptr),right(nullptr){} }; //广度优先搜索没有递归 stack<Node*> stk; void bfs(Node*

2021-12-04 20:06:45 255

原创 orb-slam2使用方法

orb-slam2编译顺序 编译顺序 bashrc添加内容: export ROS_PACKAGE_PATH=${ROS_PACKAGE_PATH}:/home/wh/code/slam/orb-slam2/orb-slam2_ws/src/ORB_SLAM2/Examples/ROS 别忘了source 先运行build.sh 再运行build_ros.sh usleep错误:#include<unistd.h> libboost_system.so错误: 不要慌张。打开/ro

2021-12-01 13:27:03 300

原创 Ubuntu 18.04 安装 NVIDIA 显卡驱动

Ubuntu 18.04 安装 NVIDIA 显卡驱动 用以下命令查看推荐版本,按推荐版本安装 //输入以下命令 ubuntu-drivers devices 比如我这里推荐的版本是470 sudo apt-get install nvidia-driver-470 安装结束,重启即可。 ...

2021-08-08 10:42:18 479

原创 装不好掐死我-Ubuntu18.04安装ROS-melodic

装不好掐死我-Ubuntu 18.04安装ROS-melodic 软件源: //清华源 sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros/ubuntu/ $DISTRIB_CODENAME main" > /etc/apt/sources.list.d/ros-latest.list' 密钥: sudo apt-key adv --keyserver keys

2021-08-06 22:11:40 220

原创 ros中的TF

ros中的TFTF树的通信方式与TF树的具体表示TF树的建立如何根据TF树得到任意坐标系的转换关系?ros中静态tf坐标关系发布方式 TF树的通信方式与TF树的具体表示 TF树的建立和维护是基于Topic通信机制的。 根据TF树的原理,它是靠建立与维护每个父子坐标系的变换关系来维护整个系统的所有坐标系的变换关系的。每个parent 坐标系到child坐标系变换关系是靠被称为broadcastor的发布器节点来持续发布的。 虽然是靠Topic通信机制发布的parent 坐标系到child坐标系的变换,但并不

2021-07-01 16:59:18 1359

原创 ROS配置相关

ROS配置相关ROS安装问题记录选择清华源搜狗输入法sudo apt-get update很慢的解决方法安装终端rosdep init ERRORROS安装教程ROS主从机配置 ROS安装问题记录 选择清华源 先选择清华的源 Other Software:全不选 Ubuntu Software:全选 搜狗输入法 sudo dpkg -i 安装包的名字 dpkg: error processing package sogoupinyin (–install): sudo apt install -f 安

2021-02-12 17:28:34 3445

原创 ROS_发布_订阅

ROS的发布与订阅发布订阅 发布 #include "ros/ros.h" #include "std_msgs/String.h" #include <sstream> int main(int argc, char **argv) { ros::init(argc, argv, "talker"); ros::NodeHandle n; ros::Publisher chatter_pub = n.advertise<std_msgs::String>

2021-02-12 17:00:46 306 1

MTRCKTSPS5744P-UM.pdf

Motor Controller Board User Manual,此文档MPC5744P的电机模块。

2019-05-18

MPC5744P.pdf

This document provides electrical specifications, pin assignments, and package diagram information for the MPC5744P series of microcontroller units (MCUs). For functional characteristics and the programming model, see the MPC5744P Reference Manual.

2019-05-18

boostudp.zip

boostUDP库

2021-02-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除