Best Free Resources to Get Started With Robotic Perception
Robotic Perception is how robots estimate their environment with measurements. I've linked the best free resources I used to learn about perception below.
Perception is an exercise in probability: robots don't know, they believe, and they believe some things more or less than others. State estimation is the technical name for the perception problem, which is all about practical implementations of iterative predict-update Bayesian filtering theory.
I learn best by doing, so the courses that had math and programming exercises were best for me, but I also found great reference material and explainers on github, youtube, and several prof's websites. If you find other resources please comment and I'll add them. Good luck on your learning journey!
Online courses
Georgia Tech / Sebastian Thrun / Udacity, Artificial Intelligence for Robotics - Sebastian Thrun is a fantastic teacher who breaks the material down into simple bite-size chunks - He also wrote a not-free textbook "Probabalistic Robotics" that I can recommend - Free to take and complete the course with programming exercises and a final project - Covers localization, KF and PF, motion planning and SLAM
U Penn / Coursera, Robotics: Perception - Part of a longer 6-unit Robotics Specialization course - Free to audit the course material, $$ to get graded assignments and a certificate - Focus: Image-centric pose estimation
ChalmersX / EdX, Sensor Fusion and Non-linear Filtering for Automotive Systems - Introduction and examples in filtering, from the Bayesian statistical theory to implementations of the KF and PF - Free to audit the course material, $$ to get graded assignments and a certificate
Video series
MATLAB, Understanding Kalman Filters - Nice easy high-level presentation - I really enjoyed the quirky presentation!
Mathworks, Understanding Sensor Fusion and Tracking - Excellent high-level introduction to sensors, sensor fusion, state estimation, and a more complex tracking application - Has practical examples of fusing GPS with IMU
I know there are a lot more fantastic video series online, but I'm not a video learner - can you recommend any others?
Detailed explanations
Brian Douglas, The Kalman Filter - Excellent easy-to-read introduction to filtering and estimation, including a gentle introduction to the math - Companion material to the Mathworks
Alex Becker, KalmanFilter.NET - Introduction to a single-variable Kalman Filter, multi-dimensional (matrix) Kalman Filter, and more advanced EKF/UKF - Includes examples and clear step-by-step algorithms for implementing and understanding the filters
Roger Labbe, Kalman and Bayesian Filters in Python - Free Jupyter Notebook-based exploration of the Kalman Filter with python code snippets, exercises, and explanations - Covers everything from Bayesian theory to implementations of Kalman filters, including unscented, extended, ensemble, and also covering particle filtering, smoothing, etc.
Textbooks
Tim Barfoot, State Estimation for Robotics - Free PDF from his website - Exhaustive and rigorous from a math perspective
Simo Sarkka, Bayesian Filtering and Smoothing - Free PDF from his website - Proofs and examples make this easier to follow
Datasets
Waymo, Open Dataset - Peception: sensor data and labels for 2k+ segments - Motion: object trajectories and 3D maps for 100k+ segments
Other stuff I found super useful to help fill in gaps
Khan Academy, Linear Algebra and Multivariable calculus - Not just for grade school kids - also for big grown up kids! - Video lessons explaining vectors, matrices, and coordinate systems (eigen-everything was helpful for me) - Derivatives and integrals of multivariable functions
Carnegie Mellon University, Probability and Statistics - Intro level course covers the basics of stats and statistical reasoning, probability and inference