Commit 014aa448 authored by Davis King's avatar Davis King

updated docs

parent e341600f
...@@ -74,6 +74,8 @@ ...@@ -74,6 +74,8 @@
<item>md5</item> <item>md5</item>
<item>crc32</item> <item>crc32</item>
<item>hash</item> <item>hash</item>
<item>count_bits</item>
<item>hamming_distance</item>
<item>murmur_hash3</item> <item>murmur_hash3</item>
<item>murmur_hash3_128bit</item> <item>murmur_hash3_128bit</item>
<item>gaussian_random_hash</item> <item>gaussian_random_hash</item>
...@@ -294,6 +296,32 @@ ...@@ -294,6 +296,32 @@
</component> </component>
<!-- ************************************************************************* -->
<component>
<name>count_bits</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/count_bits_abstract.h</spec_file>
<description>
This function counts the number of bits in an unsigned integer which are
set to 1.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>hamming_distance</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/count_bits_abstract.h</spec_file>
<description>
This function returns the hamming distance between two unsigned integers.
That is, it returns the number of bits which differer in the two integers.
</description>
</component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component> <component>
......
...@@ -1025,6 +1025,8 @@ ...@@ -1025,6 +1025,8 @@
<term file="algorithms.html" name="murmur_hash3"/> <term file="algorithms.html" name="murmur_hash3"/>
<term file="algorithms.html" name="murmur_hash3_128bit"/> <term file="algorithms.html" name="murmur_hash3_128bit"/>
<term file="algorithms.html" name="hash"/> <term file="algorithms.html" name="hash"/>
<term file="algorithms.html" name="count_bits"/>
<term file="algorithms.html" name="hamming_distance"/>
<term file="algorithms.html" name="gaussian_random_hash"/> <term file="algorithms.html" name="gaussian_random_hash"/>
<term file="algorithms.html" name="uniform_random_hash"/> <term file="algorithms.html" name="uniform_random_hash"/>
......
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