Extended Kalman Filter Software Implementation - Sensor Fusion #4 - Phil's Lab #73

Поделиться
HTML-код
  • Опубликовано: 3 июл 2024
  • Extended Kalman Filter (EKF) implementation and practical considerations. Real-world, real-time implementation and demo on an STM32 microcontroller in C using accelerometer and gyroscope measurements.
    Part 4 (final) of sensor fusion video series.
    [SUPPORT]
    Free trial of Altium Designer: www.altium.com/yt/philslab
    PCBA from $0 (Free Setup, Free Stencil): jlcpcb.com/RHS
    Patreon: / phils94
    [LINKS]
    Git: github.com/pms67
    Sensor Fusion Part 3: • Extended Kalman Filter...
    Sensor Fusion Part 2: • Complementary Filter -...
    Sensor Fusion Part 1: • Accelerometers and Gyr...
    IIR Filters: • IIR Filters - Theory a...
    Tag-Connect SWD Probe: www.tag-connect.com/product/t...
    Small Unmanned Aircraft (Book): uavbook.byu.edu/doku.php
    Euler Angles: control.asu.edu/Classes/MMAE44... (from slide 17)
    [TIMESTAMPS]
    00:00 Introduction
    00:21 Altium Designer Free Trial
    00:44 JLCPCB and Design Files
    01:06 Pre-Requisites
    01:53 'Low-Level' Firmware Overview
    07:00 Axis Re-Mapping
    08:17 Calibration
    09:42 Filtering Raw Measurements
    12:12 EKF Algorithm Overview
    14:11 EKF Initialisation
    17:12 EKF Predict Step
    19:26 Matlab/Octave Symbolic Toolbox
    21:11 EKF Update Step
    22:16 Setting EKF Parameters
    23:26 Debug Set-up and Tag-Connect SWD Probe
    24:05 Live Demonstration
    26:29 Practical Considerations
    ID: QIBvbJtYjWuHiTG0uCoK
  • НаукаНаука

Комментарии • 98

  • @dinhtrungche9619
    @dinhtrungche9619 21 час назад

    Huge respect. I'm an engineering student and you helped me see the clear in a forest of theories. I haven't been able to find such quality information anywhere, thank you so much.

  • @isaacclark9825
    @isaacclark9825 Год назад +23

    One of my favorite topics! Well worth the wait! I've not found very much practical EKF discussion for free. Lots of theoretical stuff...

    • @PhilsLab
      @PhilsLab  Год назад +4

      Thanks a lot, Isaac! :)

  • @fredo514
    @fredo514 Год назад +4

    I waited a long time for this one since the last part of the series! Thank you!

  • @kalaghori2680
    @kalaghori2680 Год назад +15

    You've actually got so quality stuff on your channel. Keep that up man!

  • @chinoramas1
    @chinoramas1 Год назад +1

    Thank you! I'm waiting for this part 4 video. Currently, I have a thesis regarding PDR. These videos really help!!! Thank you!

    • @chinoramas1
      @chinoramas1 Год назад

      Can you share the sample base program from the one you have discussed?

  • @billscott356
    @billscott356 Год назад

    Outstanding suite of videos!

  • @nhlakaniphombatha5769
    @nhlakaniphombatha5769 Год назад +2

    THIS GUY IS THE BEST ..WE ALL LOVE YOU PHIL ❤❤🙌🙌🙌

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thank you very much :)

  • @dhruslab9563
    @dhruslab9563 Год назад

    I was waiting for this video to come . Finally the wait is over!

    • @PhilsLab
      @PhilsLab  Год назад

      Thanks for waiting! :)

  • @sandman94
    @sandman94 Месяц назад

    thank you just what I needed👍

  • @temyraverdana6421
    @temyraverdana6421 Год назад

    An incredible lesson. Thanks

  • @mohammadmalaktammo973
    @mohammadmalaktammo973 Год назад +4

    Thank you very much! I am doing now my thesis on this topic and I have learned from your videos more than from the 3 scientific papers I read😊

    • @PhilsLab
      @PhilsLab  Год назад

      Glad to hear the videos have been helpful - good luck with your thesis!

    • @have_fun1107
      @have_fun1107 Месяц назад

      Hello, Can you please give me your contact information? I am also doing my thesis on this topic and struggling to find a way.

  • @vycka7360
    @vycka7360 Год назад

    Finally an end to this topic, been waiting for so long

  • @alihancoban953
    @alihancoban953 Год назад

    it's a great job , thank you for the videos.

  • @akanguven114
    @akanguven114 4 месяца назад

    Thank you so much ! Perfect.

    • @PhilsLab
      @PhilsLab  4 месяца назад +1

      You're welcome!

  • @TheMechatronicEngineer
    @TheMechatronicEngineer Год назад

    Very interesting!

  • @sumitmamoria
    @sumitmamoria Год назад

    very nice, as always

  • @karanbirchahal3268
    @karanbirchahal3268 Год назад

    Wow you’re amazing !!!!

  • @steev0373
    @steev0373 Год назад +3

    Thanks for the video Phil!
    Currently I use a complementary filter for my flight control software and it works quite well. But one day I may go down this rabbit hole...

    • @minhhungnguyen7867
      @minhhungnguyen7867 Год назад +4

      Here is some more infos if you really want to delve deep into the rabbit hole:
      - The EKF algorithm assumes the system's nonlinearity isn't too drastic, this might not hold for many dynamics flight environment. So an algorithm better suited for nonlinear system was developed, called Unscented Kalman Filter. This filter doesn't rely on linearization of the Jacobian matrix.
      - Euler's angles suffer from well-known drawback known as gimbal lock. Therefore quaternion is preferred to represent orientation. But unlike angles which can be estimated by adding angle rate, quaternion "adding" operation is multiplication. Therefore an algorithm called Multiplicative Extended Kalman Filter is developed to address this problem.
      - The error of many systems are usually Gaussian white noise, which is independent of the system dynamics. Therefore the behavior of the system's error is usually less complex than the system itself, for example: in the first video, Phil showed that despite the gyro rate function being nonlinear (using trigonometric operation), the error (gyro drift) appears to be linear . Thus instead of estimating the real value of the system, an algorithm calls Error State Kalman Filter instead opt to estimate the error of the system, which is subtracted with the measurements to yield the true value.
      - The stability and convergent speed of the Kalman filter depends largely on the covariance P and gain K, which stabilize when the observer converges. An algorithm called Invariant Kalman Filter aims to achieve better performance by quickly converge those two aforementioned variables to fixed value, thus provide robustness to the system.
      Those are some overview of the more advance approach to the problem of estimating attitude. Now down the internet rabbit hole you go :)

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thanks, Steve! In many situations a complementary filter is enough - definitely. Although diving into Kalman filters does open up some rather nice and interesting possibilities.

    • @minhhungnguyen7867
      @minhhungnguyen7867 Год назад

      @@PhilsLab Hi Phil, I've read some material that use a method called Allan's variance to get the matrix P, Q and R for a particular sensors. I wonder whether you've used this method to find out P,Q,R matrix in the video?

    • @joegibbs8609
      @joegibbs8609 Год назад +1

      @@minhhungnguyen7867 This particular rabbit hole has some very nice mathematics! Invariant filters take advantage of the matrix Lie group structure of rotation matrices (SO(3)) and unit quaternions (S3) among others. Firstly you can embed orthonormality constraints directly into the filter (i.e. no quaternion normalisation required etc.), but you can also derive log-linear error dynamics, guaranteeing convergence in some instances.

  • @gretarmark
    @gretarmark Год назад +3

    Amazing and very inspiring video. I studied this theory in my master's program where we only used Matlab and Simulink. It's nice to see hands-on example like this! It would be interesting to compare the Extended Kalman Filter to the Unscentend Kalman Filter. I'm not sure which one is more robust.

    • @joegibbs8609
      @joegibbs8609 Год назад

      They're fairly comparable, the UKF is more robust when the linearisation used in the EKF is not a good approximation of the nonlinear function (measurement or propagation). The UKF instead calculates the posterior mean and covariance from a set of sigma points.

    • @PhilsLab
      @PhilsLab  Год назад +3

      Thank you, Gretar! I hadn't planned on covering the UKF but possibly will show the error-state Kalman filter in a future video.

  • @ahsdjasashdahs9940
    @ahsdjasashdahs9940 Год назад

    Brilliant !

  • @joegibbs8609
    @joegibbs8609 Год назад +1

    Fantastic video! My background is state estimation algorithms but I've always avoided deploying them to actual hardware, this is a fab tutorial on making the leap from Matlab/Simulink to C!

    • @PhilsLab
      @PhilsLab  Год назад

      Thank you very much, Joe! Very glad to hear that. Also cool to see you answering comments here on EKFs/state estimation. Any chance you can share some of your work?

    • @joegibbs8609
      @joegibbs8609 Год назад

      @@PhilsLab I'll have a couple of papers coming out in a few months that I'll happily share, my main research focus is in error-state and invariant filtering for navigation and tracking but I'm by no means an expert!

  • @RupertBruce
    @RupertBruce Год назад

    Nice trick using Octave to derive the jacobian

  • @rahmatdwiputra
    @rahmatdwiputra Год назад

    yes, lets gooo

  • @macbethfpv9977
    @macbethfpv9977 Год назад

    Thanks for the Educational Videos Phil!
    In reference to the I2C MPU6050.h file,
    4:23 has a skip over a portion of the MPU6050_Init( ), was hoping you could enlighten me as to what lines 54-60 were? I couldn't find this driver within any repo on your Github.

  • @tc.
    @tc. Год назад

    Thank you, Phil! Great video series!
    Are you planning to make videos for quaternion approach?

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thank you!
      Although I've implemented quaternion-based EKFs in the past, I'm afraid I haven't got any video planned on that for the near future.

  • @marianomonaco3623
    @marianomonaco3623 Год назад +1

    Hi Phil! Great job as always!, I would like to know your opinion, I have seen that is possible to program a microcontroller with Matlab and implement all the filtering I want. Do you think is better that way? do I have more tools to work with? is this way more straightforward? Thank you very much!

  • @Elliot_97
    @Elliot_97 Год назад +1

    So in non sensor fusion applications of EKF, the prediction step is purely based on theoretical equations/models, and then the update step incorporates real measured data. In this sensor fusion example, why is the real gyroscope measured data not used in the update step? And why is it relevant to the theoretical prediction step? Doesn't this somewhat defeat the purpose of a Kalman Filter? Thankyou.

  • @TechnoDuke
    @TechnoDuke Год назад

    Thank you for practical explanation of EKF in video! But following github link, I can't find sources from this video, am I do something wrong?

  • @lucaswebb7717
    @lucaswebb7717 7 месяцев назад

    Amazing video! I do have a question though Phil, with the update stage when calculating the kalman gain, what matrix would you need to put in for P in order to result in a 3x3 matrix with variables p0:p3? I am trying to implement a kalman filter that will be used for a rocket and have am able to do most of the sensor fusion required although this step has had me stumped

  • @isaacclark9825
    @isaacclark9825 Год назад +4

    Should SPI be used instead of I2C for mission-critical systems? If not, what would you recommend?

    • @PhilsLab
      @PhilsLab  Год назад +5

      Yes, SPI is definitely preferred and pretty common. More advanced (and costly) IMUs will have more 'complicated'/robust interfaces.

  • @Nickle314
    @Nickle314 Год назад

    Another question. EKF produces an estimate for the current state. Clearly some of those previous estimates will be inaccurate.
    Can you in light of current information revisit past estimates to get a more accurate estimate of past estimates? For example, a rolling update of the last 20 estimates including the current? If that makes sense?

  • @joaquinmarianopineiro2716
    @joaquinmarianopineiro2716 10 месяцев назад

    Hello, why there is a changing in sign for x and y coordinates in acceleration? The direction of x+ or y- is aligned with mpu

  • @vovanikotin
    @vovanikotin Год назад +1

    Phil, what about Madgwick filter? maybe also video?

    • @PhilsLab
      @PhilsLab  Год назад

      Although I've used it maybe once or twice, I'm afraid I don't have the greatest knowledge of the Madgwick filter - so I'm afraid for now I'd have to pass on making a video on that, sorry!

  • @ylulnlulsYx1
    @ylulnlulsYx1 Год назад

    There is another version of Kalman filter. I think, it's called unscented Kalman filter (ukf). People consider this for highly non linear systems. Could be interesting to implement in MCU. Is an EKF always good, except the calculation of jacobians? What if the gyroscope parameters are slightly off?

    • @joegibbs8609
      @joegibbs8609 Год назад +1

      Unscented and more generally Cubature Kalman Filters are popular as they remove the need for calculating Jacobians. Just throw them any measurement and propagation functions and they'll work! In terms of gyroscope measurements, they tend to have a lot less noise than accelerometers, hence why they are a complementary pairing in a complementary filter! Over time however they will drift due to integration of noise called angular walk and bias. We can actually add in bias terms into the state for the EKF/UKF and estimate it, removing the drift from the gyroscope measurements to correct for it.
      The Mahony Filter is an alternative to this that uses a PI controller in a quite elegant way.

  • @filipvukovic5141
    @filipvukovic5141 Год назад

    Hello, How do I get the yaw angle?

  • @netmaxim
    @netmaxim Год назад

    Thanks!
    Do you have recommandations on resource for a more advanced model ?

    • @PhilsLab
      @PhilsLab  Год назад

      Thanks, Maxime. For aircraft in particular, I can highly recommend the book 'Aircraft Control and Simulation', which covers far more advanced models.

  • @thomasvnl
    @thomasvnl Год назад +3

    Hi Phil. Can you explain why I²C should not be used for mission critical components as you describe it at 02:12? And does that also have something to do with ST's implementation on the F4 or just in general?

    • @PhilsLab
      @PhilsLab  Год назад +3

      Hi Thomas, First there's the general speed-limitation of I2C. Ideally, we'd want to retrieve measurements at a higher rate. Then, I2C (especially with multiple devices on the bus) is prone to 'hang-ups', which require either a restart of the device or sending a number of clock pulses to the device. For configuration of a device, I2C is perfectly fine - I just wouldn't want to use it, for example, for retrieving measurements in a flight controller.

    • @PavloD9
      @PavloD9 8 месяцев назад

      @@PhilsLabwhat bus would you use instead?

    • @tariqsingh3747
      @tariqsingh3747 8 месяцев назад +1

      ​@@PavloD9Probably SPI, as he did on the first version of the little brain board

  • @user-fj9lp7ot7v
    @user-fj9lp7ot7v 7 месяцев назад

    Hey Phil, I'm currently learning to use the Kalman Filter on the MPU6050 before I port it to another gyro/accel sensor, since it's obsolete now. I'm doing a low-power IoT project that runs on battery. Apart from transmitting raw data using DMA, do u have any suggestions for reducing power consumption?
    (Unfortunately, I don't know the on-board Digital Motion Processor algorithms well enough for me to use it)

  • @shreyasacharya279
    @shreyasacharya279 Месяц назад

    Great lecture! The following Github link doesn't take me to the source code, or did I make any mistakes?

  • @AustynLoehr
    @AustynLoehr 2 месяца назад

    Could you provide some background on the decision to use gyro readings in the predict step and not just include both gyro and accel data in the update step? I assume this is because it is difficult to come up with a better state transition function without knowing more about the system which is IMU is sensing.

  • @johnrbnsn
    @johnrbnsn Год назад

    Isn't adding a low pass software filter the wrong thing to do? I thought since EKF was an "optimal filter" and the filter is just getting rid of noise that the EKF does its own filtering, without adding another layer of time delay to the readings?

  • @PrasannaRoutray97
    @PrasannaRoutray97 Год назад +2

    Hi Phil, Nice contribution. Is source code available for this?

  • @Nickle314
    @Nickle314 Год назад +1

    One other source of errors is that the sensors are not necessarily orthogonal.

  • @arielvieiralimaserafim7765
    @arielvieiralimaserafim7765 Год назад +1

    Can you release the source code ?, I did not find it in your GitHub.

  • @maazsiddiqui6324
    @maazsiddiqui6324 Год назад +1

    Is there any discord community for embedded systems and hardware Designing? I would love to join.

  • @brctoms2203
    @brctoms2203 Год назад +1

    Why shouldn't the I2C be used for mission critical applications?

    • @andile5945
      @andile5945 Год назад +1

      I’m not an electrical engineer so take my comment with a grain of salt. I hope Philip can answer this for you if time allows it.
      My take: Firstly, i2c is half duplex and serial protocol. Secondly, think about bandwidth and noise in the system. Mission critical system need to be robust taking into account redundancy and reliability. Look into CAN or MIL533. Hope this helps.

  • @Nelixios
    @Nelixios Год назад +2

    Yet another masterpiece of a tutorial.
    I've implemented an EKF in a way similar to yours a few months ago and I've found that using CMSIS-DSP library's matrix operation functions goes a long way to simplifying the code and the biggest bonus, in my opinion, is the fact that larger matrices do not exponentially increase the code size - I wouldn't want to imagine what an 6x6 or a 9x9 EKF matrix inversion would look like when typed out in such a verbose way as shown in this video.
    Do you think that implementing a different integration method, say RK-4, would result in any meaningful improvement, especially if the sample time is relatively low (5ms and less)?

    • @joegibbs8609
      @joegibbs8609 Год назад +1

      Generally Euler (1st Order) integration is more than fine and you won't see any meaningful results from using higher order routines, especially if you're at a relatively high frequency. In fact, the linearisation of the propagation and measurement functions in an EKF is only first-order anyway as we use the Jacobian.

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thank you very much. Indeed, the CMSIS-DSP library is very useful and I'm planning on making a video covering it (in particular for the FFT) in the near future. Yes, a 6x6 or 9x9 EKF matrix inversion typed out like this would look rather grim..
      And thanks to Joe who's already answered your integration method question :)

  • @uwezimmermann5427
    @uwezimmermann5427 Год назад +1

    An interesting and well made explanation video - though naturally a bit tough to follow, even if you have learned about Kalman-filters already in the past. However I suggest that you really zoom into your code rather than showing the whole IDE. I am watching your videos on my regular tv, and in spite of quite a sizeable screen, it is impossible to read your code on the screen.

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thank you very much, Uwe. Yes, I'm sorry about that - it had slipped my mind to increase the code size. I'll make sure to have it larger in future videos.

  • @micheleciaramicoli7139
    @micheleciaramicoli7139 Год назад

    great job man, I can't find the code on your git hub, is it there?

    • @PhilsLab
      @PhilsLab  Год назад

      Thanks, Michele - check out the Hades repo, should be there.

  • @RSolimov
    @RSolimov Год назад

    wait, what? why not use I2C for "mission critical" functions?

  • @johnrbnsn
    @johnrbnsn Год назад

    Why not use I2C for mission critical systems?

    • @Andrew-rc3vh
      @Andrew-rc3vh Год назад

      With I2c you can easily get a scenario where a device gets a bit wrong which causes the bus to hang, as if it were constantly acknowledging. The cause can be a spike on the line and to correct it you need to disconnect the power to the faulty device so it resets. A better bus will use some error checking to make sure the bits are correct.

  • @shantoislam8223
    @shantoislam8223 Год назад

    brother how did you learn stm32 programming ,please share me some information, book,pdf or something like that

  • @GudalaChandanraj
    @GudalaChandanraj Год назад

    can i get this stm32 code ? do share it man its so usefull for many.

  • @yaghiyahbrenner8902
    @yaghiyahbrenner8902 Год назад

    Phil - Where you getting your ST micro's ?

    • @PhilsLab
      @PhilsLab  Год назад

      LCSC mainly. Mouser has some less-powerful ones in stock.

    • @yaghiyahbrenner8902
      @yaghiyahbrenner8902 Год назад

      @@PhilsLab Thanks matey, great video by the way appreciate the reply.

  • @andile5945
    @andile5945 Год назад

    Wait you designed that whole module by yourself? Have you ever used ARIN429 protocol? These videos are godsent tbh thanks

    • @PhilsLab
      @PhilsLab  Год назад +1

      Thank you!
      Yeah, the hardware is my own design. Never worked with ARINC429 I'm afraid!

    • @andile5945
      @andile5945 Год назад

      @@PhilsLab thanks for getting back. It’s amazing what the mind can do. I binge your videos, religiously. Cheers again.

    • @PhilsLab
      @PhilsLab  Год назад

      Thank you very much, Andrew!

  • @MONISHAGOWRI
    @MONISHAGOWRI Год назад

    Is code available for this?