Go to file
Davis King f9fac06e16 Made inv() handle singular matrices in a more reasonable way. Now it will make
some effort to detect them and output an identity matrix in that case.
2014-08-02 18:56:01 -04:00
dlib Made inv() handle singular matrices in a more reasonable way. Now it will make 2014-08-02 18:56:01 -04:00
docs updated docs 2014-07-20 19:19:58 -04:00
examples Changed the example to recommend using something like the f1-score when using 2014-06-23 16:06:23 -04:00
python_examples changed python example so that running it without commands doesn't trigger a testing 2014-03-09 13:37:30 -04:00
tools Fixed a bug where the imglab tool would sometimes start out with an annoyingly 2014-07-20 14:47:05 -04:00
.gitignore Added .o to .gitignore file 2014-02-18 09:35:08 -05:00
.hgignore updated ignore file 2014-03-08 21:41:59 -05:00
.hgtags Added tag v18.9 for changeset 4de62892e108 2014-06-08 15:50:19 -04:00
README.txt updated repo level readme file 2014-01-28 21:09:07 -05:00


See http://dlib.net for the main project documentation.



COMPILING DLIB EXAMPLE PROGRAMS
   Go into the examples folder and type:
   mkdir build; cd build; cmake .. ; cmake --build .

   That will build all the examples.  There is nothing to install when using
   dlib.  It's just a folder of source files.  

RUNNING THE UNIT TEST SUITE
   Type the following to compile and run the dlib unit test suite:
       cd dlib/test
       mkdir build
       cd build
       cmake ..
       cmake --build . --config Release
       ./test --runall

   Note that on windows your compiler might put the test executable in a
   subfolder called Release.  If that's the case then you have to go to that
   folder before running the test.

DOCUMENTATION
   The source control repository doesn't contain finished documentation.  The
   stuff in the docs folder is just a bunch of scripts and xml files used to
   generate the documentation.  There is a readme in docs/README.txt which
   discusses how to do this.  However, unless you are trying to modify the
   documentation, you should just download a copy from http://dlib.net.