updated docs

This commit is contained in:
Davis King 2012-03-22 20:15:31 -04:00
parent 3ef9a48735
commit 28215b40de
2 changed files with 5 additions and 5 deletions

View File

@ -84,7 +84,7 @@ it by typing:
sudo apt-get install libx11-dev
</code_box>
<h2>Compiling on Windows using gcc</h2>
<h2>Compiling on Windows Using GCC</h2>
<p>
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.
</p>
<h2>Compiling on Windows using Visual Studio</h2>
<h2>Compiling on Windows Using Visual Studio</h2>
<p>
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

View File

@ -13,8 +13,8 @@
<current>
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.