NoMotionFilter.cpp
Go to the documentation of this file.
1 // *****************************************************************
2 // Filename: NoMotionFilter.cpp
3 // Copyright: Kai Welke, Chair Prof. Dillmann (IAIM),
4 // Institute for Computer Science and Engineering (CSE),
5 // University of Karlsruhe. All rights reserved.
6 // Author: Kai Welke
7 // Date: 27.05.2009
8 // *****************************************************************
9 
10 // *****************************************************************
11 // includes
12 // *****************************************************************
13 #include "NoMotionFilter.h"
14 
15 // *****************************************************************
16 // prediction / update
17 // *****************************************************************
19 NoMotionFilter::filter(const Gaussian& believe, const Eigen::VectorXd& perceptZ)
20 {
21  // only update
22  Gaussian result = update(believe, perceptZ);
23 
24  return result;
25 }
NoMotionFilter.h
NoMotionFilter::filter
Gaussian filter(const Gaussian &believe, const Eigen::VectorXd &perceptZ)
Definition: NoMotionFilter.cpp:19
Gaussian
Definition: Gaussian.h:50
KalmanFilter::update
Gaussian update(const Gaussian &predicted_believe, const Eigen::VectorXd &perceptZ)
Definition: KalmanFilter.cpp:74