updated docs

This commit is contained in:
Davis King 2018-05-13 00:09:19 -04:00
parent 92e1158101
commit 69a53cc9fb
6 changed files with 34 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -175,6 +175,7 @@
<section>
<name>Morphology</name>
<item>label_connected_blobs</item>
<item>label_connected_blobs_watershed</item>
<item>segment_image</item>
<item>binary_dilation</item>
<item>binary_erosion</item>
@ -902,7 +903,8 @@
a colored version an image.
<p>
This function is useful for displaying the results of some image
segmentation. For example, the output of <a href="#label_connected_blobs">label_connected_blobs</a>
segmentation. For example, the output of <a href="#label_connected_blobs">label_connected_blobs</a>,
<a href="label_connected_blobs_watershed">label_connected_blobs_watershed</a>,
or <a href="#segment_image">segment_image</a>.
</p>
</description>
@ -1954,6 +1956,36 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>label_connected_blobs_watershed</name>
<file>dlib/image_transforms.h</file>
<spec_file link="true">dlib/image_transforms/label_connected_blobs_abstract.h</spec_file>
<description>
This function performs a watershed segmentation of an image and
labels each resulting flooding region with a unique integer label.
<p>
For example, given an image like this, which shows part of the Hubble ultra deep field:
<center><img src="hubble_ultra_deep_field.jpg"/></center>
<br/>
The algorithm would flood fill it and produce the following segmentation. If you play
the video you can see the actual execution of the algorithm where it starts by flooding
from the brightest areas and progressively fills each region.
<br/>
<br/>
<center>
<video src="watershed">
Video of optimizer running
</video>
</center>
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>

View File

@ -1439,6 +1439,7 @@
<term file="imaging.html" name="binary_difference" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="label_connected_blobs" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="label_connected_blobs_watershed" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="segment_image" include="dlib/image_transforms.h"/>
<term file="imaging.html" name="find_candidate_object_locations" include="dlib/image_transforms.h"/>
<term file="dlib/image_transforms/segment_image_abstract.h.html" name="remove_duplicates" include="dlib/image_transforms.h"/>

BIN
docs/docs/watershed.mp4 Normal file

Binary file not shown.

BIN
docs/docs/watershed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
docs/docs/watershed.webm Normal file

Binary file not shown.