forked from oontvoo/kalman-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vy Nguyen
committed
May 2, 2013
1 parent
6bf26ae
commit 7015111
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Noise-Filter (For UMass Boston's indoor-localisation project) | ||
----------------- | ||
Provided a set of locations which might or might not be the true locations of the object, the program will be able to filter out some noise and return a list of corrected values | ||
|
||
|
||
Notes: | ||
-------- | ||
- This API should only be used to track an object whose motion could be described with a fixed model (In other words, the moving object must belong to a (linear) dynamical system). | ||
|
||
Problem needs solving | ||
--------- | ||
- In real life, it's hard to find a fixed model to describe an object's motion. That is, most 'natural' motions (a person walking, for instance) are relatively unpredictable, and can't always be correlated to a fixed set of equations! | ||
Other kind of filter(s) would be needed.... | ||
- (Should replace the Kalman Filter with something else?) | ||
|
||
Current Achievement: | ||
---------- | ||
http://www.cs.umb.edu/~vngu0510/java/kalmanfilter/data/graphs/SampleGraph.pdf |