All Projects → onlytailei → Cpprobotics

onlytailei / Cpprobotics

Licence: mit
cpp implementation of robotics algorithms including localization, mapping, SLAM, path planning and control

Programming Languages

cpp
1120 projects

Projects that are alternatives of or similar to Cpprobotics

Rtabmap
RTAB-Map library and standalone application
Stars: ✭ 1,376 (+89.27%)
Mutual labels:  robotics, localization
Iris lama
LaMa - A Localization and Mapping library
Stars: ✭ 217 (-70.15%)
Mutual labels:  robotics, localization
Door Slam
Distributed, Online, and Outlier Resilient SLAM for Robotic Teams
Stars: ✭ 107 (-85.28%)
Mutual labels:  robotics, localization
Quickmcl
QuickMCL - Monte Carlo localisation for ROS
Stars: ✭ 24 (-96.7%)
Mutual labels:  robotics, localization
Dynamic robot localization
Point cloud registration pipeline for robot localization and 3D perception
Stars: ✭ 339 (-53.37%)
Mutual labels:  robotics, localization
Awesome Decision Making Reinforcement Learning
A selection of state-of-the-art research materials on decision making and motion planning.
Stars: ✭ 68 (-90.65%)
Mutual labels:  robotics, algorithms
Pythonrobotics
Python sample codes for robotics algorithms.
Stars: ✭ 13,934 (+1816.64%)
Mutual labels:  robotics, localization
Particle Filter Prototype
Particle Filter Implementations in Python and C++, with lecture notes and visualizations
Stars: ✭ 29 (-96.01%)
Mutual labels:  robotics, localization
Floam
Fast LOAM: Fast and Optimized Lidar Odometry And Mapping for indoor/outdoor localization (Lidar SLAM)
Stars: ✭ 326 (-55.16%)
Mutual labels:  robotics, localization
RustRobotics
Rust implementation of PythonRobotics such as EKF, DWA, Pure Pursuit, LQR.
Stars: ✭ 40 (-94.5%)
Mutual labels:  localization, robotics
Kimera Vio
Visual Inertial Odometry with SLAM capabilities and 3D Mesh generation.
Stars: ✭ 741 (+1.93%)
Mutual labels:  robotics, localization
Cartographer
Cartographer is a system that provides real-time simultaneous localization and mapping (SLAM) in 2D and 3D across multiple platforms and sensor configurations.
Stars: ✭ 5,754 (+691.47%)
Mutual labels:  robotics, localization
Robotics Coursework
🤖 Places where you can learn robotics (and stuff like that) online 🤖
Stars: ✭ 1,810 (+148.97%)
Mutual labels:  robotics, algorithms
direct lidar odometry
Direct LiDAR Odometry: Fast Localization with Dense Point Clouds
Stars: ✭ 202 (-72.21%)
Mutual labels:  localization, robotics
Odas
ODAS: Open embeddeD Audition System
Stars: ✭ 435 (-40.17%)
Mutual labels:  robotics, localization
Cs Video Courses
List of Computer Science courses with video lectures.
Stars: ✭ 27,209 (+3642.64%)
Mutual labels:  robotics, algorithms
Streetscape.gl
Visualization framework for autonomy and robotics data encoded in XVIZ
Stars: ✭ 632 (-13.07%)
Mutual labels:  robotics
Dsa.js Data Structures Algorithms Javascript
🥞Data Structures and Algorithms explained and implemented in JavaScript + eBook
Stars: ✭ 6,251 (+759.83%)
Mutual labels:  algorithms
Meta Typing
📚 Functions and algorithms implemented purely with TypeScript's type system
Stars: ✭ 628 (-13.62%)
Mutual labels:  algorithms
Humanizer
Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities
Stars: ✭ 6,482 (+791.61%)
Mutual labels:  localization

CppRobotics

This is the cpp implementation of the PythonRobotics

Requirment

  • cmake
  • opencv 3.3
  • Eigen 3
  • CppAD / IPOPT (for MPC convex optimization) install tips
  • ROS (To make the repo lightweight :). Yet, we may still need it for 3D visualization.)

Build

 $ mkdir build
 $ cd build
 $ cmake ../
 $ make -j 8

Find all the executable files in build/bin.

Table of Contents

Localization

Extended Kalman Filter Localization

  • green line: the groundtruth trajectory
  • black line: dead reckoning
  • red points: observations (e.g. GPS)
  • blue line: estimated positions
ekf

Probabilistic Robotics

Particle Filter Localization

  • green line: the groundtruth trajectory
  • black line: dead reckoning
  • red points: landmarks
  • blue line: estimated positions
pf

Probabilistic Robotics

Path Planning

Dijkstra

  • blue point: the start point
  • red point: the goal point
dijkstra

A star

  • blue point: the start point
  • red point: the goal point
a_star

RRT

  • red circle: the start point
  • blue circle: the goal point
  • black circle: obstacles
rrt

Dynamic Window Approach

  • blue circle: the target point
  • red circle: the robot
dwa

The dynamic window approach to collision avoidance

Model Predictive Trajectory Generator

This part is based on the bicycle motion model.

  • blue circle: the target point
  • red circle: the initial point
mptg

Cubic Spline Planner

csp

State Lattice Planner

  • blue circle: the target point
  • red circle: the initial point
slp

State Space Sampling of Feasible Motions for High-Performance Mobile Robot Navigation in Complex Environments

Frenet Frame Trajectory

  • black line: the planned spline path
  • red circle: the obstacle
  • blue circle: the planned trajectory
  • green circle: the real-time position of robot
frenet

Optimal Trajectory Generation for Dynamic Street Scenarios in a Frenet Frame

Path Tracking Control

LQR Steering Control

  • black line: the planned spline path
  • red circle: the position under lqr control
lqr_steering

LQR Speed and Steering Control

  • black line: the planned spline path
  • red circle: the position under lqr control
lqr_full

MPC Speed and Steering Control

  • black line: the planned spline path
  • blue line: the passed path
  • yellow cross: the reference trajectory for MPC
    (To compile this part, you need to uncomment the related lines in CMakeLists.txt and install CppAD and IPOPT.)
mpc
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].