diff --git a/docs/docs/imaging.xml b/docs/docs/imaging.xml index cb69f72f0..d4689ce75 100644 --- a/docs/docs/imaging.xml +++ b/docs/docs/imaging.xml @@ -81,6 +81,8 @@ Object Detection object_detector scan_image + scan_image_movable_parts + find_points_above_thresh scan_image_pyramid test_box_overlap @@ -156,6 +158,7 @@ separable_3x3_filter_block_grayscale separable_3x3_filter_block_rgb sum_filter + sum_filter_assign max_filter spatially_filter_image_separable_down @@ -1131,6 +1134,19 @@ sum_filter dlib/image_transforms.h dlib/image_transforms/spatial_filtering_abstract.h + + This function slides a rectangle over an input image and adds the sum + of pixel values in each rectangle location to another image. + + + + + + + + sum_filter_assign + dlib/image_transforms.h + dlib/image_transforms/spatial_filtering_abstract.h This function slides a rectangle over an input image and outputs a new image which contains the sum of pixels inside the rectangle at each @@ -1510,6 +1526,38 @@ + + + + scan_image_movable_parts + dlib/image_processing.h + dlib/image_processing/scan_image_abstract.h + + This global function is a tool for sliding a set of rectangles + over an image space and finding the locations where the sum of pixels in + the rectangles exceeds a threshold. It is useful for implementing + certain kinds of sliding window classifiers. The behavior of this + routine is similar to scan_image except that + it can also handle movable parts in addition to rigidly placed parts + within the sliding window. + + + + + + + + find_points_above_thresh + dlib/image_processing.h + dlib/image_processing/scan_image_abstract.h + + This routine finds all points in an image with a pixel value above a + threshold. It also has the ability to produce an efficient random + subsample of such points if the number of them is very large. + + + + diff --git a/docs/docs/term_index.xml b/docs/docs/term_index.xml index e9d29df34..668def954 100644 --- a/docs/docs/term_index.xml +++ b/docs/docs/term_index.xml @@ -1094,6 +1094,7 @@ + @@ -1141,6 +1142,10 @@ + + + + @@ -1153,6 +1158,7 @@ +