diff --git a/docs/docs/imaging.xml b/docs/docs/imaging.xml index e084de2de..1166a62af 100644 --- a/docs/docs/imaging.xml +++ b/docs/docs/imaging.xml @@ -85,6 +85,7 @@ scan_image_movable_parts find_points_above_thresh scan_image_pyramid + find_candidate_object_locations test_box_overlap Scan Image Pyramid Tools @@ -1434,6 +1435,28 @@ + + + + find_candidate_object_locations + dlib/image_transforms.h + dlib/image_transforms/segment_image_abstract.h + + 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 segment_image 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: +
+ Segmentation as Selective Search for Object Recognition by Koen E. A. van de Sande, et al. +
+ Note that this function deviates from what is described in the paper slightly. + See the code for details. +
+ +
+ diff --git a/docs/docs/term_index.xml b/docs/docs/term_index.xml index b1cacf899..d2dddf06f 100644 --- a/docs/docs/term_index.xml +++ b/docs/docs/term_index.xml @@ -1124,6 +1124,8 @@ + +