updated docs

This commit is contained in:
Davis King 2014-07-20 19:19:58 -04:00
parent aa1ccfcdfb
commit 679e75ae34
2 changed files with 23 additions and 3 deletions

View File

@ -13,9 +13,11 @@
This page documents the functionality present in this library that deals with the
management and manipulation of images. One thing to note is that there is no
explicit image object. Instead, everything deals with <a href="containers.html#array2d">
array2d</a> objects that contain various kinds of pixels.
array2d</a> objects that contain various kinds of pixels or user defined <a href="dlib/image_processing/generic_image.h.html">
generic image</a> objects.
</p>
<p>
<h2>Pixel Types</h2>
Most image handling routines in dlib will accept images containing any pixel type.
@ -41,9 +43,15 @@
<ul>Any built in scalar type may be used as a grayscale pixel type. For example, unsigned char, int, double, etc.</ul>
</li>
</ul>
</p>
<p>
<h2>Object Detection</h2>
If you want to create object detectors then try the
<a href="#scan_fhog_pyramid">scan_fhog_pyramid</a> tool first. It is quite
easy to use and train and will, in many cases, give excellent results.
</p>
</body>
<!-- ************************************************************************* -->

View File

@ -1286,6 +1286,18 @@
<term file="imaging.html" name="interest_point" include="dlib/image_keypoint.h"/>
<term file="imaging.html" name="surf_point" include="dlib/image_keypoint.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="Generic image interface"/>
<term link="dlib/image_processing/generic_image.h.html" name="num_rows" include="dlib/image_processing.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="num_columns" include="dlib/image_processing.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="set_image_size" include="dlib/image_processing.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="image_size" include="dlib/image_processing.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="image_data" include="dlib/image_processing.h"/>
<term link="dlib/image_processing/generic_image.h.html" name="width_step" include="dlib/image_processing.h"/>
<term file="dlib/image_processing/generic_image.h.html" name="image_traits" include="dlib/image_processing.h"/>
<term file="dlib/image_processing/generic_image.h.html" name="image_view" include="dlib/image_processing.h"/>
<term file="dlib/image_processing/generic_image.h.html" name="const_image_view" include="dlib/image_processing.h"/>
<term file="dlib/image_processing/generic_image.h.html" name="make_image_view" include="dlib/image_processing.h"/>
<term file="dlib/image_processing/box_overlap_testing_abstract.h.html" name="overlaps_any_box" include="dlib/image_processing.h"/>
<term file="imaging.html" name="test_box_overlap" include="dlib/image_processing.h"/>
<term file="imaging.html" name="remove_unobtainable_rectangles" include="dlib/image_processing.h"/>