Commit f3b0e8bc authored by Davis King's avatar Davis King

updated docs

parent e2d78d3a
......@@ -122,6 +122,12 @@
<item>projection_hash</item>
<item>create_random_projection_hash</item>
</section>
<section>
<name>Filtering</name>
<item>kalman_filter</item>
<item>rls_filter</item>
</section>
</top>
</menu>
......@@ -224,6 +230,41 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>kalman_filter</name>
<file>dlib/filtering.h</file>
<spec_file>dlib/filtering/kalman_filter_abstract.h</spec_file>
<description>
This object implements the Kalman filter, which is a tool for
recursively estimating the state of a process given measurements
related to that process. To use this tool you will have to
be familiar with the workings of the Kalman filter. An excellent
introduction can be found in the paper:
<blockquote>
An Introduction to the Kalman Filter
by Greg Welch and Gary Bishop
</blockquote>
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>rls_filter</name>
<file>dlib/filtering.h</file>
<spec_file>dlib/filtering/rls_filter_abstract.h</spec_file>
<description>
This object is a tool for doing time series prediction using
linear <a href="ml.html#rls">recursive least squares</a>. In particular,
this object takes a sequence of points from the user and, at each
step, attempts to predict the value of the next point.
</description>
</component>
<!-- ************************************************************************* -->
<component>
......
......@@ -27,6 +27,8 @@
<term file="algorithms.html" name="shrink_rect"/>
<term file="algorithms.html" name="grow_rect"/>
<term file="algorithms.html" name="dcenter"/>
<term file="algorithms.html" name="kalman_filter"/>
<term file="algorithms.html" name="rls_filter"/>
<term file="dlib/optimization/optimization_abstract.h.html" name="central_differences"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment