Commit 588b1cc4 authored by Davis King's avatar Davis King

updated the docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402335
parent ca4cd48c
......@@ -429,6 +429,10 @@
<name>on_keydown</name>
<link>dlib/gui_widgets/drawable_abstract.h.html#on_keydown</link>
</item>
<item>
<name>on_string_put</name>
<link>dlib/gui_widgets/drawable_abstract.h.html#on_string_put</link>
</item>
<item>
<name>on_user_event</name>
<link>dlib/gui_widgets/drawable_abstract.h.html#on_user_event</link>
......@@ -460,6 +464,10 @@
<name>default_font</name>
<link>dlib/gui_widgets/fonts_abstract.h.html#default_font</link>
</item>
<item>
<name>get_native_font</name>
<link>dlib/gui_widgets/fonts_abstract.h.html#get_native_font</link>
</item>
<item>
<name>bdf_font</name>
<link>dlib/gui_widgets/fonts_abstract.h.html#bdf_font</link>
......
......@@ -12,10 +12,28 @@
<current>
New Stuff:
- Added the remove_row and remove_col matrix functions. Also made all
three of the above functions capable of taking arguments at run time
as well as compile time.
- Added the ability to cap the number of dictionary vectors used by the krls
and kcentroid object at a user specified number. This changes the
serialization format of the objects.
- Added the pick_initial_centers() function
- Merged in Keita Mochizuki's unicode patches to the GUI components
Non-Backwards Compatible Changes:
- Changed the interface to the krls and kcentroid objects somewhat.
- All of the style objects in the GUI part of the library now use
dlib::ustring instead of std::string. This only matters to you if
you have made your own style objects.
Bug fixes:
- Fixed an aliasing bug in the set_subm(), set_rowm(), and set_colm()
functions. It was possible that you could get incorrect results
if you used these functions to copy one part of a matrix to another
part of the same matrix if the two areas overlapped.
- Fixed a minor numerical error in the krls code so now it gets slightly
better results.
Other:
- Made the types generated by the matrix operations a lot shorter. This
......
......@@ -145,6 +145,12 @@
<term link="dlib/gui_widgets/drawable_abstract.h.html#on_keydown" name="in drawable object"/>
</term>
<term name="on_string_put">
<term link="dlib/gui_core/gui_core_kernel_abstract.h.html#on_string_put" name="in base_window object"/>
<term link="dlib/gui_widgets/drawable_abstract.h.html#on_string_put" name="in drawable object"/>
</term>
<term link="dlib/gui_core/gui_core_kernel_abstract.h.html#paint" name="paint"/>
......@@ -267,6 +273,7 @@
<term link="dlib/gui_widgets/fonts_abstract.h.html#letter" name="letter"/>
<term link="dlib/gui_widgets/fonts_abstract.h.html#font" name="font"/>
<term link="dlib/gui_widgets/fonts_abstract.h.html#default_font" name="default_font"/>
<term link="dlib/gui_widgets/fonts_abstract.h.html#get_native_font" name="get_native_font"/>
<term link="dlib/gui_widgets/fonts_abstract.h.html#bdf_font" name="bdf_font"/>
......
......@@ -12,8 +12,6 @@ smart pointer that uses a memory manager. think memory pool with pool pointers
make a function to make a vector of vectors look like a matrix
implement kmeans++
add something to unroll a matrix into a vector
......
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