From 28215b40ded18d7feb18b35c20fb00a5ffd81210 Mon Sep 17 00:00:00 2001 From: Davis King Date: Thu, 22 Mar 2012 20:15:31 -0400 Subject: [PATCH] updated docs --- docs/docs/compile.xml | 4 ++-- docs/docs/release_notes.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/compile.xml b/docs/docs/compile.xml index 040470e18..937678a33 100644 --- a/docs/docs/compile.xml +++ b/docs/docs/compile.xml @@ -84,7 +84,7 @@ it by typing: sudo apt-get install libx11-dev -

Compiling on Windows using gcc

+

Compiling on Windows Using GCC

The commands for gcc on windows are the same as above but you may also have to link (via the -l option) to the following libraries: gdi32, comctl32, user32, ws2_32, or imm32. @@ -92,7 +92,7 @@ sudo apt-get install libx11-dev windows development than gcc.

-

Compiling on Windows using Visual Studio

+

Compiling on Windows Using Visual Studio

All you need to do is create an empty console project. Then add dlib/all/source.cpp to it and add the folder containing the dlib folder to the #include search path. Then you can compile any example program diff --git a/docs/docs/release_notes.xml b/docs/docs/release_notes.xml index 4ea24abd3..4037bc45a 100644 --- a/docs/docs/release_notes.xml +++ b/docs/docs/release_notes.xml @@ -13,8 +13,8 @@ New Stuff: - Image Processing: - - Added the option to make the features generated by the poly_image - rotationally invariant. + - Added the option to make the features generated by poly_image rotationally + invariant. - Added a set of routines for warping, scaling, and resizing images. See the new "Scaling and Rotating" section of the image processing documentation for details. @@ -27,7 +27,7 @@ New Stuff: - Added the get_option() routines which slightly simplify option parsing from the command line and config files. - Added the 128bit version of Murmur hash. - - Added the rls_filter and kalman_filter objects. These are tools for + - Added the kalman_filter and rls_filter objects. These are tools for performing Kalman filtering and recursive least squares filtering. - Added the circular_buffer object.