Commit 74d799fa authored by Davis King's avatar Davis King

updated release notes

parent 64539e65
...@@ -12,51 +12,66 @@ ...@@ -12,51 +12,66 @@
<current> <current>
New Features: New Features:
- Added the ability to label parts of objects with the mouse to the image_display widget. - Machine Learning
- Added the start_async() function to the server object. - Added the ability to learn non-negative weight vectors to the
- Added the ability to put overlay circles and full_object_detections into the image_window widget. structural_assignment_trainer object.
- Added a stddev() for matrix objects. - Added two new graph clustering algorithms: Chinese Whispers and
- Added operator+() for running_stats and running_scalar_covariance Newman's modularity clustering.
- Added BSP tools - Added a number of new graph manipulation tools:
- Added connection::disable_nagle() sparse_matrix_vector_multiply(), is_ordered_by_index(),
- Added the network_address object. find_neighbor_ranges(), convert_unordered_to_ordered(),
- Added connect_to() to the bridge interface remove_duplicate_edges(), and the ordered_sample_pair object.
- Added the ability to learn non-negative weight vectors to the structural_assignment_trainer object. - Networking
- Added an overload of murmur_hash3_128bit() that takes 4 integers instead of a block of memory. - Added a set of tools for creating applications using the Bulk Synchronous
- Added remove_duplicate_edges(). Parallel computing model. See the new bsp_ex.cpp example program for an
- Added ordered_sample_pair introduction.
- Added rand::get_random_64bit_number(). - Added a routine that lets a user disable Nagle's algorithm on a TCP
- Added sparse_matrix_vector_multiply() connection.
- Added is_ordered_by_index(), find_neighbor_ranges(), and convert_unordered_to_ordered() - Added an asynchronous start routine to the server object. This is the new
- Added newman_cluster(), chinese_whispers(), and modularity() routines. start_async() method.
- Added find_max_parse_cky() - Added the network_address object.
- Added connect_to() to the bridge interface.
Non-Backwards Compatible Changes: - Added find_max_parse_cky(), a method implementing the well known CKY algorithm
- Changed the image_dataset_metadata XML reading tools to use a map of strings to for parsing probabilistic context free grammars.
points to represent object parts. This change also removes the old head point - Added the ability to label parts of objects with the mouse to the image_display
from a box since this information can now be represented in the parts map. widget.
- Broke backwards compatibility, the syntax for passing order_by_distance and - Added the ability to put overlay circles and full_object_detections into the
order_by_index to std::sort() is now slightly different since these functions are image_window widget.
now templates. This allows them to work on any kind of sample_pair or - Added a stddev() for matrix objects.
ordered_sample_pair object. - Added operator+() for running_stats and running_scalar_covariance.
- The default distance of a sample_pair that was default initialized is 1 now - Added an overload of murmur_hash3_128bit() that takes 4 integers instead of a
instead of infinity. block of memory.
- Added rand::get_random_64bit_number().
Bug fixes:
- Added a patch, contributed by Martin Müllenhaupt, to fix a minor bug in the Non-Backwards Compatible Changes:
SQLite bindings. - Changed the image_dataset_metadata XML reading tools to use a map of strings to
- Fixed a typo which would prevent code that called running_stats::max_n() from compiling. points to represent object parts. This change removes the old head point from a
box since this information can now be represented in the parts map.
Other: - The syntax for passing order_by_distance and order_by_index to std::sort() is
- Added a new documentation page for the various graph tools in dlib. now slightly different since these functions are now templates. However, this
- Added support for Visual Studio 2012 change allows them to work on any kind of sample_pair or ordered_sample_pair
- Switched the sample_pair object to use double to store its distance value instead of float. object.
- Added William Sobel's patch to the web server that improves its flexibility and security. - The default distance value of a sample_pair is now initialized to 1 instead of
- Changed the server object so you don't have to use the server::kernel_1a syntax infinity.
anymore to declare it. Now you just say server, server_iostream, or server_http
depending on which one you want. Bug fixes:
- Set the default max number of connections a server will accept at a time to 1000 - Added a patch, contributed by Martin Müllenhaupt, to fix a minor bug in the
rather than the previous default of infinity. SQLite bindings.
- Fixed a typo which would prevent code that called running_stats::max_n() from
compiling.
Other:
- Added a new documentation page for the various graph tools in dlib.
- Added support for Visual Studio 2012.
- Switched the sample_pair object to use double to store its distance value
instead of float.
- Added William Sobel's patch to the web server that improves its flexibility and
security.
- Changed the server object so you don't have to use the server::kernel_1a syntax
to declare it anymore. Now you just say server, server_iostream, or
server_http depending on which one you want.
- Set the default max number of connections a server will accept at a time to
1000 rather than the previous default of infinity.
</current> </current>
......
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