Commit f528ae28 authored by Davis King's avatar Davis King

merged

parents 007a6794 bb9708da
...@@ -32,7 +32,7 @@ Non-Backwards Compatible Changes: ...@@ -32,7 +32,7 @@ Non-Backwards Compatible Changes:
in addition to just raw ranking accuracy. This changes their return types in addition to just raw ranking accuracy. This changes their return types
from double to matrix<double,1,2>. from double to matrix<double,1,2>.
- Generalized segment_image() so it works on any pixel type or array of - Generalized segment_image() so it works on any pixel type or array of
vectors. I also changed it's interface slightly. In particular, I removed vectors. I also changed its interface slightly. In particular, I removed
the min_diff parameter and replaced it with an explicit min_size parameter. the min_diff parameter and replaced it with an explicit min_size parameter.
- Changed how the SURF descriptor is computed slightly to improve its - Changed how the SURF descriptor is computed slightly to improve its
accuracy. The interface to the user has not been changed, however, the accuracy. The interface to the user has not been changed, however, the
...@@ -59,6 +59,9 @@ Bug fixes: ...@@ -59,6 +59,9 @@ Bug fixes:
murmur_hash3() to avoid violation of the strict aliasing rule. In murmur_hash3() to avoid violation of the strict aliasing rule. In
particular, the previous version didn't work correctly in gcc 4.7.2 when particular, the previous version didn't work correctly in gcc 4.7.2 when
optimizations were enabled. optimizations were enabled.
- Visual Studio 2012's iostreams library has a bug which caused the
iosockstream to crash on use. This version of dlib has been changed to
avoid triggering this bug.
Other: Other:
- Refactored the Platt scaling code a little. Now there is a function, - Refactored the Platt scaling code a little. Now there is a function,
...@@ -927,7 +930,7 @@ Bug fixes: ...@@ -927,7 +930,7 @@ Bug fixes:
- Fixed a bug in scale_columns. It said it didn't have any destructive aliasing - Fixed a bug in scale_columns. It said it didn't have any destructive aliasing
when in fact it destructively aliased its second argument. when in fact it destructively aliased its second argument.
- Fixed a bug in the random number generator where setting the seed back to "" - Fixed a bug in the random number generator where setting the seed back to ""
didn't result in the object going back to it's initial state. didn't result in the object going back to its initial state.
Other: Other:
- Reorganized the matrix expression code. It's now much simpler and the - Reorganized the matrix expression code. It's now much simpler and the
......
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