Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Hdl_localization | 570 | 8 months ago | 52 | bsd-2-clause | C++ | |||||
Real-time 3D localization using a (velodyne) 3D LIDAR | ||||||||||
Robot_pose_ekf | 187 | 2 years ago | bsd-3-clause | C++ | ||||||
The robot_pose_ekf ROS package applies sensor fusion on the robot IMU and odometry values to estimate its 3D pose. | ||||||||||
Map Based Visual Localization | 122 | 3 years ago | mit | |||||||
A general framework for map-based visual localization. It contains 1) Map Generation which support traditional features or deeplearning features. 2) Hierarchical-Localizationvisual in visual(points or line) map. 3)Fusion framework with IMU, wheel odom and GPS sensors. | ||||||||||
Scikit Kinematics | 113 | 4 months ago | 15 | other | Python | |||||
Python functions for working with 3D kinematics. | ||||||||||
Awesome Vacuum | 91 | 2 years ago | cc0-1.0 | |||||||
A curated list of free and open source software and hardware to build and control a robot vacuum. | ||||||||||
Quadruped Robot Moco 12 | 71 | 3 years ago | Python | |||||||
MOCO通用四足机器人控制器教程 | ||||||||||
3d Mapping | 28 | 6 years ago | 2 | C++ | ||||||
3D mapping using a 2D laser scanner and IMU-aided visual SLAM | ||||||||||
Cartographer_kitti_config | 13 | 4 years ago | 2 | Lua | ||||||
cartographer configuration files for KITTI dataset including .lua and .launch | ||||||||||
Google Cartographer Slam With Velodyne16 | 10 | 2 years ago | 1 | Lua | ||||||
3d_scanner | 10 | 8 years ago | Jupyter Notebook | |||||||
blender python script to receive and process data from an arduino/lidar/mpu6050 based 3D_scanner |
The robot_pose_ekf ROS package applies sensor fusion on the robot IMU and odometry values to estimate its 3D pose.
The package contains a single node
$ cd /home/workspace/catkin_ws/src/
$ git clone https://github.com/udacity/robot_pose_ekf
<launch>
<node pkg="robot_pose_ekf" type="robot_pose_ekf" name="robot_pose_ekf">
<param name="output_frame" value="odom_combined"/>
<param name="base_footprint_frame" value="base_footprint"/>
<param name="freq" value="30.0"/>
<param name="sensor_timeout" value="1.0"/>
<param name="odom_used" value="true"/>
<param name="imu_used" value="true"/>
<param name="vo_used" value="false"/>
<remap from="imu_data" to="/mobile_base/sensors/imu_data" />
</node>
</launch>
$ cd /home/workspace/catkin_ws
$ catkin_make
$ source devel/setup.bash
$ roslaunch robot_pose_ekf robot_pose_ekf.launch