2012-06-27 04:13:11 +08:00
Changelog
=========
Release 0.05
------------
2012-10-18 01:42:09 +08:00
This library is now included in the official OpenCV distribution (from 2.4 on).
2012-07-07 04:42:02 +08:00
The :ocv:class`FaceRecognizer` is now an :ocv:class: `Algorithm` , which better fits into the overall
2012-10-18 01:42:09 +08:00
OpenCV API.
2012-06-27 04:13:11 +08:00
2012-10-18 01:42:09 +08:00
To reduce the confusion on user side and minimize my work, libfacerec and OpenCV
have been synchronized and are now based on the same interfaces and implementation.
2012-06-27 04:13:11 +08:00
The library now has an extensive documentation:
* The API is explained in detail and with a lot of code examples.
2012-10-18 01:42:09 +08:00
* The face recognition guide I had written for Python and GNU Octave/MATLAB has been adapted to the new OpenCV C++ `` cv::FaceRecognizer `` .
2012-06-27 04:13:11 +08:00
* A tutorial for gender classification with Fisherfaces.
2012-10-18 01:42:09 +08:00
* A tutorial for face recognition in videos (e.g. webcam).
2012-06-27 04:13:11 +08:00
Release highlights
++++++++++++++++++
2012-07-07 04:42:02 +08:00
* There are no single highlights to pick from, this release is a highlight itself.
2012-06-27 04:13:11 +08:00
Release 0.04
------------
2012-10-18 01:42:09 +08:00
This version is fully Windows-compatible and works with OpenCV 2.3.1. Several
bugfixes, but none influenced the recognition rate.
2012-06-27 04:13:11 +08:00
Release highlights
++++++++++++++++++
2012-07-07 04:42:02 +08:00
* A whole lot of exceptions with meaningful error messages.
* A tutorial for Windows users: `http://bytefish.de/blog/opencv_visual_studio_and_libfacerec <http://bytefish.de/blog/opencv_visual_studio_and_libfacerec> `_
2012-06-27 04:13:11 +08:00
Release 0.03
------------
2012-10-18 01:42:09 +08:00
Reworked the library to provide separate implementations in cpp files, because
it's the preferred way of contributing OpenCV libraries. This means the library
is not header-only anymore. Slight API changes were done, please see the
2012-06-27 04:13:11 +08:00
documentation for details.
Release highlights
++++++++++++++++++
2012-07-07 04:42:02 +08:00
* New Unit Tests (for LBP Histograms) make the library more robust.
* Added more documentation.
2012-06-27 04:13:11 +08:00
Release 0.02
------------
2012-10-18 01:42:09 +08:00
Reworked the library to provide separate implementations in cpp files, because
it's the preferred way of contributing OpenCV libraries. This means the library
is not header-only anymore. Slight API changes were done, please see the
2012-06-27 04:13:11 +08:00
documentation for details.
Release highlights
++++++++++++++++++
2012-07-07 04:42:02 +08:00
* New Unit Tests (for LBP Histograms) make the library more robust.
* Added a documentation and changelog in reStructuredText.
2012-06-27 04:13:11 +08:00
Release 0.01
------------
Initial release as header-only library.
Release highlights
++++++++++++++++++
2012-07-07 04:42:02 +08:00
* Colormaps for OpenCV to enhance the visualization.
* Face Recognition algorithms implemented:
2012-06-27 04:13:11 +08:00
2012-07-07 04:42:02 +08:00
* Eigenfaces [TP91]_
* Fisherfaces [BHK97]_
* Local Binary Patterns Histograms [AHP04]_
2012-10-18 01:42:09 +08:00
2012-07-07 04:42:02 +08:00
* Added persistence facilities to store the models with a common API.
* Unit Tests (using `gtest <http://code.google.com/p/googletest/> `_ ).
* Providing a CMakeLists.txt to enable easy cross-platform building.