Commit d5a27eba authored by Davis King's avatar Davis King

updated docs

parent 802d6411
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
<item>sobel_edge_detector</item> <item>sobel_edge_detector</item>
<item>suppress_non_maximum_edges</item> <item>suppress_non_maximum_edges</item>
<item>threshold_image</item> <item>threshold_image</item>
<item>auto_threshold_image</item> <item>partition_pixels</item>
<item>hough_transform</item> <item>hough_transform</item>
</section> </section>
...@@ -1871,13 +1871,14 @@ ...@@ -1871,13 +1871,14 @@
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component> <component>
<name>auto_threshold_image</name> <name>partition_pixels</name>
<file>dlib/image_transforms.h</file> <file>dlib/image_transforms.h</file>
<spec_file link="true">dlib/image_transforms/thresholding_abstract.h</spec_file> <spec_file link="true">dlib/image_transforms/thresholding_abstract.h</spec_file>
<description> <description>
This global function performs a simple binary thresholding on an image. This function finds a threshold value that would be reasonable to use with
Instead of taking a user supplied threshold <a href="#threshold_image">threshold_image</a>. It does this by finding the threshold that
it computes one from the image using k-means clustering. partitions the pixels in an image into two groups such that the sum of absolute
deviations between each pixel and the mean of its group is minimized.
</description> </description>
</component> </component>
......
...@@ -1496,7 +1496,7 @@ ...@@ -1496,7 +1496,7 @@
<term file="dlib/image_transforms/image_pyramid_abstract.h.html" name="image_to_tiled_pyramid" include="dlib/image_transforms.h"/> <term file="dlib/image_transforms/image_pyramid_abstract.h.html" name="image_to_tiled_pyramid" include="dlib/image_transforms.h"/>
<term file="dlib/image_transforms/image_pyramid_abstract.h.html" name="tiled_pyramid_to_image" include="dlib/image_transforms.h"/> <term file="dlib/image_transforms/image_pyramid_abstract.h.html" name="tiled_pyramid_to_image" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="threshold_image" include="dlib/image_transforms.h"/> <term file="imaging.html" name="threshold_image" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="auto_threshold_image" include="dlib/image_transforms.h"/> <term file="imaging.html" name="partition_pixels" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="png_loader" include="dlib/image_io.h"/> <term file="imaging.html" name="png_loader" include="dlib/image_io.h"/>
<term file="imaging.html" name="jpeg_loader" include="dlib/image_io.h"/> <term file="imaging.html" name="jpeg_loader" include="dlib/image_io.h"/>
......
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