|
11 | 11 | <!-- ************************************************************************************** -->
|
12 | 12 |
|
13 | 13 | <current>
|
| 14 | +New Features: |
| 15 | + - More clustering tools: |
| 16 | + - Added bottom_up_cluster() and find_clusters_using_angular_kmeans() |
| 17 | + routines. |
| 18 | + - Added a --cluster option to the imglab tool. This lets you cluster |
| 19 | + objects into groups of similar appearance/pose. |
| 20 | + - Improved the shape_predictor. In particular, it can now be learned from |
| 21 | + datasets where some landmarks are missing. The shape_predictor also now |
| 22 | + outputs a sparse feature vector that encodes which leafs are used on each |
| 23 | + tree to make a prediction. |
| 24 | + |
| 25 | +Non-Backwards Compatible Changes: |
| 26 | + - extract_highdim_face_lbp_descriptors() produces slightly different output. |
| 27 | + |
| 28 | +Bug fixes: |
| 29 | + - Fixed a minor bug in extract_highdim_face_lbp_descriptors() which was |
| 30 | + pointed out by Yan Xu. One of the face locations was mistakenly used twice |
| 31 | + while another was skipped. This change breaks backwards compatibility with |
| 32 | + the previous feature extraction output but should slightly improve |
| 33 | + accuracy of classifiers trained using these features. |
| 34 | + - Fixed jet() and heatmap() so they work on empty images. |
| 35 | + - The SQLite transaction object did not function correctly when compiled |
| 36 | + in a C++11 program. Since its destructor can throw, an exception |
| 37 | + specification needed to be added indicating that this was possible since |
| 38 | + destructors are now noexcept by default in C++11. |
| 39 | + - Fixed a bug pointed out by Ernesto Tapia that could cause matrix |
| 40 | + expressions that involve sub matrix views (e.g. colm) to produce the wrong |
| 41 | + results when the BLAS bindings were enabled. |
| 42 | + - Added an if to avoid a possible division by zero inside spectral_cluster(). |
| 43 | + - Fixed a bug in parse_xml(). It failed to check if the given input stream |
| 44 | + was valid before trying to parse it. |
| 45 | + |
| 46 | +Other: |
| 47 | + |
| 48 | +</current> |
| 49 | + |
| 50 | +<!-- ************************************************************************************** --> |
| 51 | + |
| 52 | +<old name="18.16" date="Jun 3, 2015"> |
14 | 53 | New Features:
|
15 | 54 | - Added a linear model predictive control solver. See the mpc_ex.cpp example
|
16 | 55 | program for details.
|
|
33 | 72 | resulted in improved CMake python scripts on OS X machines.
|
34 | 73 | - Improved the way overlapping points are rendered by the perspective_window.
|
35 | 74 |
|
36 |
| -</current> |
| 75 | +</old> |
37 | 76 |
|
38 | 77 | <!-- ************************************************************************************** -->
|
39 | 78 |
|
|
0 commit comments