Commit b6b3cf1f authored by Davis King's avatar Davis King

updated docs

parent a924bdad
...@@ -85,6 +85,7 @@ ...@@ -85,6 +85,7 @@
<item>scan_image_movable_parts</item> <item>scan_image_movable_parts</item>
<item>find_points_above_thresh</item> <item>find_points_above_thresh</item>
<item>scan_image_pyramid</item> <item>scan_image_pyramid</item>
<item>find_candidate_object_locations</item>
<item>test_box_overlap</item> <item>test_box_overlap</item>
<item nolink="true"> <item nolink="true">
<name>Scan Image Pyramid Tools</name> <name>Scan Image Pyramid Tools</name>
...@@ -1434,6 +1435,28 @@ ...@@ -1434,6 +1435,28 @@
</component> </component>
<!-- ************************************************************************* -->
<component>
<name>find_candidate_object_locations</name>
<file>dlib/image_transforms.h</file>
<spec_file link="true">dlib/image_transforms/segment_image_abstract.h</spec_file>
<description>
This function takes an input image and generates a set of candidate
rectangles which are expected to bound any objects in the image. It does
this by running a version of the <a href="#segment_image">segment_image</a> routine on the image and
then reports rectangles containing each of the segments as well as rectangles
containing unions of adjacent segments. The basic idea is described in the
paper:
<blockquote>
Segmentation as Selective Search for Object Recognition by Koen E. A. van de Sande, et al.
</blockquote>
Note that this function deviates from what is described in the paper slightly.
See the code for details.
</description>
</component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component> <component>
......
...@@ -1124,6 +1124,8 @@ ...@@ -1124,6 +1124,8 @@
<term file="imaging.html" name="label_connected_blobs"/> <term file="imaging.html" name="label_connected_blobs"/>
<term file="imaging.html" name="segment_image"/> <term file="imaging.html" name="segment_image"/>
<term file="imaging.html" name="find_candidate_object_locations"/>
<term file="dlib/image_transforms/segment_image_abstract.h.html" name="remove_duplicates"/>
<term file="imaging.html" name="neighbors_8"/> <term file="imaging.html" name="neighbors_8"/>
<term file="imaging.html" name="neighbors_4"/> <term file="imaging.html" name="neighbors_4"/>
<term file="imaging.html" name="connected_if_both_not_zero"/> <term file="imaging.html" name="connected_if_both_not_zero"/>
......
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