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// *****************************************************************
19NoMotionFilter::filter(const Gaussian& believe, const Eigen::VectorXd& perceptZ)
20{
21 // only update
22 Gaussian result = update(believe, perceptZ);
23
24 return result;
25}
Gaussian update(const Gaussian &predicted_believe, const Eigen::VectorXd &perceptZ)
Gaussian filter(const Gaussian &believe, const Eigen::VectorXd &perceptZ)