updated docs

This commit is contained in:
Davis King 2012-01-21 10:49:12 -05:00
parent da9de3d862
commit 060f6c91b4
3 changed files with 19 additions and 1 deletions

View File

@ -117,6 +117,7 @@
</item> </item>
<item>hog_image</item> <item>hog_image</item>
<item>fine_hog_image</item>
<item>poly_image</item> <item>poly_image</item>
<item>hashed_feature_image</item> <item>hashed_feature_image</item>
<item>nearest_neighbor_feature_image</item> <item>nearest_neighbor_feature_image</item>
@ -325,6 +326,19 @@
</component> </component>
<!-- ************************************************************************* -->
<component>
<name>fine_hog_image</name>
<file>dlib/image_keypoint.h</file>
<spec_file link="true">dlib/image_keypoint/fine_hog_image_abstract.h</spec_file>
<description>
This object is a version of the <a href="#hog_image">hog_image</a> that
allows you to extract HOG features at a finer resolution.
</description>
</component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component> <component>
@ -357,6 +371,7 @@
The following feature extractors can be wrapped by the hashed_feature_image: The following feature extractors can be wrapped by the hashed_feature_image:
<ul style="margin-top:0em"> <ul style="margin-top:0em">
<li><a href="#hog_image">hog_image</a></li> <li><a href="#hog_image">hog_image</a></li>
<li><a href="#fine_hog_image">fine_hog_image</a></li>
<li><a href="#poly_image">poly_image</a></li> <li><a href="#poly_image">poly_image</a></li>
</ul> </ul>
</description> </description>
@ -384,6 +399,7 @@
The following feature extractors can be wrapped by the nearest_neighbor_feature_image: The following feature extractors can be wrapped by the nearest_neighbor_feature_image:
<ul style="margin-top:0em"> <ul style="margin-top:0em">
<li><a href="#hog_image">hog_image</a></li> <li><a href="#hog_image">hog_image</a></li>
<li><a href="#fine_hog_image">fine_hog_image</a></li>
<li><a href="#poly_image">poly_image</a></li> <li><a href="#poly_image">poly_image</a></li>
</ul> </ul>
</description> </description>

View File

@ -21,7 +21,8 @@ New Stuff:
the object_detector_ex.cpp example program for details. the object_detector_ex.cpp example program for details.
- Image Processing - Image Processing
- Added sum_filter() and spatially_filter_image_separable_down() - Added sum_filter() and spatially_filter_image_separable_down()
- New feature extractors: poly_image, nearest_neighbor_feature_image - New feature extractors: poly_image, nearest_neighbor_feature_image, and
fine_hog_image
Non-Backwards Compatible Changes: Non-Backwards Compatible Changes:
- Changed the serialization format for rand objects. - Changed the serialization format for rand objects.

View File

@ -1035,6 +1035,7 @@
<term file="imaging.html" name="compute_dominant_angle"/> <term file="imaging.html" name="compute_dominant_angle"/>
<term file="imaging.html" name="compute_surf_descriptor"/> <term file="imaging.html" name="compute_surf_descriptor"/>
<term file="imaging.html" name="hog_image"/> <term file="imaging.html" name="hog_image"/>
<term file="imaging.html" name="fine_hog_image"/>
<term file="imaging.html" name="poly_image"/> <term file="imaging.html" name="poly_image"/>
<term file="imaging.html" name="hashed_feature_image"/> <term file="imaging.html" name="hashed_feature_image"/>
<term file="imaging.html" name="nearest_neighbor_feature_image"/> <term file="imaging.html" name="nearest_neighbor_feature_image"/>