Commit b4118c51 authored by Davis King's avatar Davis King

updated docs

parent 040cfe88
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<li> Help make the web page prettier </li> <li> Help make the web page prettier </li>
<li> Link to dlib from your web page </li> <li> Link to dlib from your web page </li>
<li> Add yourself or your project to the list of <li> Add yourself or your project to the list of
<a href="http://sourceforge.net/apps/mediawiki/dclib/index.php?title=Known_users">dlib users</a> </li> <a href="http://sourceforge.net/p/dclib/wiki/Known_users/">dlib users</a> </li>
<li> Try to run the dlib regression test suite on any platforms you <li> Try to run the dlib regression test suite on any platforms you
have access to </li> have access to </li>
</ul> </ul>
......
...@@ -26,10 +26,10 @@ New Features: ...@@ -26,10 +26,10 @@ New Features:
- The point transform functions and frobmetric_training_sample are now serializable. - The point transform functions and frobmetric_training_sample are now serializable.
- Added a simplified operator &lt;&lt; and &gt;&gt; based syntax for serializing to and - Added a simplified operator &lt;&lt; and &gt;&gt; based syntax for serializing to and
from files. So now you can serialize to a file using a syntax of: from files. So now you can serialize to a file using a syntax of:
serialize("myfile.dat") &lt;&lt; myobject &lt;&lt; another_object; serialize("myfile.dat") &lt;&lt; myobject &lt;&lt; another_object;
and then load those objects from disk via: and then load those objects from disk via:
deserialize("myfile.dat") &gt;&gt; myobject &gt;&gt; another_object; deserialize("myfile.dat") &gt;&gt; myobject &gt;&gt; another_object;
An arbitrary number of objects can be serialize or deserialized by An arbitrary number of objects can be serialized or deserialized by
chaining the &lt;&lt; and &gt;&gt; operators. chaining the &lt;&lt; and &gt;&gt; operators.
Non-Backwards Compatible Changes: Non-Backwards Compatible Changes:
......
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