1. Kalmanfilter

Algorithm

frame 1 : object의 위치를 detect 한 후 수식을 통해 예측을 한다.

frame 2 :

  1. object를 detect 한 값을 frame1에서의 예측값의 차이에 kalman gain을 곱하여 값을 update 한다. (값 보정)

  2. object를 detect 한 값을 수식을 통해 다음 frame에서의 위치및 속도를 예측한다.

    위과정을 재귀적으로 반복한다.

    Untitled

관련 자료

kalmanfilter 구현 영상 및 code

Understand & Code a Kalman Filter [Part 2, Python]

GitHub - arjunapanji21/kfObjectDetection: Object Detection And Prediction Using Kalman Filter OpenCV

Matlab kalmanfilter 에대한 기초 설명

Understanding Kalman Filters, Part 2: State Observers

Understanding Kalman Filters, Part 3: Optimal State Estimator

Understanding Kalman Filters, Part 4: Optimal State Estimator Algorithm

Understanding Kalman Filters, Part 5: Nonlinear State Estimators

kalman filter를 통해 prediction과 update에 관한 수식 정리한 파일

kalman filter를 통해 prediction과 update에 관한 수식 정리한 파일

2. PID 제어