Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
07cce7a2
Commit
07cce7a2
authored
Jan 06, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated release notes
parent
ee72092e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
16 deletions
+13
-16
release_notes.xml
docs/docs/release_notes.xml
+13
-16
No files found.
docs/docs/release_notes.xml
View file @
07cce7a2
...
@@ -32,23 +32,22 @@ New Features:
...
@@ -32,23 +32,22 @@ New Features:
- Added an overload of sparse_matrix_vector_multiply() that multiplies a dense matrix
- Added an overload of sparse_matrix_vector_multiply() that multiplies a dense matrix
with a sparse vector.
with a sparse vector.
- Added the find_affine_transform() routine.
- Added the find_affine_transform() routine.
- Made toMat() work with matrix object in addition to array2d style images.
- Made toMat() work with
the
matrix object in addition to array2d style images.
- Added the mat() function.
It roll
s the array_to_matrix(), vector_to_matrix(),
- Added the mat() function.
It combine
s the array_to_matrix(), vector_to_matrix(),
pointer_to_column_vector(), and pointer_to_matrix() methods all into one convenient
pointer_to_column_vector(), and pointer_to_matrix() methods all into one convenient
interface. Also made stddev() slightly more general. This change also deprecates the
interface. mat() also works for Armadillo and Eigen matrices.
previous matrix conversion functions. mat() also works for Armadillo and Eigen matrices.
- Added STL style begin() and end() methods to matrix and matrix_exp.
- Added STL style begin() and end() methods to matrix and matrix_exp.
- Graphical User Interface Tools
- Graphical User Interface Tools
- Added draw_solid_convex_polygon()
- Added draw_solid_convex_polygon()
- Added an overload of draw_image() that's useful for drawing images and doing
- Added an overload of draw_image() that's useful for drawing images and doing
interpolation at the same time.
interpolation at the same time.
- Added
on_view_changed() callback to zoomable_region and scrollable_region gui
widgets.
- Added
the on_view_changed() callback to zoomable_region and scrollable_region
widgets.
- Added parse_trees_to_string() and parse_trees_to_string_tagged()
- Added parse_trees_to_string() and parse_trees_to_string_tagged()
- Added lambda function support to the timeout object.
- Added lambda function support to the timeout object.
- Added the vectorstream object
.
- Added the vectorstream object
- Added the parse_xml() routines
- Added the parse_xml() routines
- Added a group name feature to the command line parser. Now it is possible to make
- Added a group name feature to the command line parser.
Now it is possible to make
print_options() print related options
so that they are grouped together.
print_options() print related options
in named groups.
- Added the following new hashing functions: murmur_hash3_128bit_3(),
- Added the following new hashing functions: murmur_hash3_128bit_3(),
murmur_hash3_2(), murmur_hash3_3(), uniform_random_hash(), gaussian_random_hash()
murmur_hash3_2(), murmur_hash3_3(), uniform_random_hash(), gaussian_random_hash()
as well as hash() overloads for uint32, uint64, and std::pair.
as well as hash() overloads for uint32, uint64, and std::pair.
...
@@ -57,20 +56,18 @@ Non-Backwards Compatible Changes:
...
@@ -57,20 +56,18 @@ Non-Backwards Compatible Changes:
- Made the svm_c_linear_trainer use the risk gap to decide when to stop. This was done
- Made the svm_c_linear_trainer use the risk gap to decide when to stop. This was done
because it is how all the other OCA based SVM tools in dlib decide when to stop.
because it is how all the other OCA based SVM tools in dlib decide when to stop.
However, it might cause the outputs to be slightly different in this version of dlib.
However, it might cause the outputs to be slightly different in this version of dlib.
- Switched the windows implementation of dlib::mutex to use a CRITICAL_SECTION instead
- It is now illegal to call unlock() on a mutex when the mutex is not owned by the
of a "mutex" (i.e. the thing made by CreateMutex()) since a critical section does the
calling thread. The most likely reason for doing this was to unlock early in an area
same thing but faster. Also changed the spec for mutex::unlock() to say that it is
locked by an auto_mutex. Old code that does this can be fixed by calling auto_mutex's
illegal for a thread to unlock a dlib::mutex it doesn't own. This is technically a
unlock() function instead.
non-backwards compatible change to the API but it has always been implemented in a way
that didn't allow this kind of double unlock() on non-Windows platforms. Additionally,
the recent change to the dlib::mutex implementation on windows also no longer allows
this kind of double unlock.
- Removed the structural_assignment_trainer::learns_nonnegative_weights() routine
- Removed the structural_assignment_trainer::learns_nonnegative_weights() routine
and moved its functionality into the feature extraction interface used by this object.
and moved its functionality into the feature extraction interface used by this object.
Bug fixes:
Bug fixes:
- Fixed a bug in find_max_factor_graph_nmplp() which caused it to not work properly on
- Fixed a bug in find_max_factor_graph_nmplp() which caused it to not work properly on
some compilers.
some compilers.
- Fixed a bug pointed out by Joel Nelson in the version of md5() that took an istream.
The bug caused the function to crash on strings longer than 56 characters.
Other:
Other:
- dlib now has an excellent new logo thanks to Yasser Asmi.
- dlib now has an excellent new logo thanks to Yasser Asmi.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment