Final changes

This commit is contained in:
Ankit Agrawal
2013-07-13 19:01:30 +08:00
parent e3cd0620a7
commit 49e8f28fe9
3 changed files with 31 additions and 30 deletions
+5 -5
View File
@@ -14,14 +14,14 @@ def _remove_border_keypoints(image, keypoints, dist):
def pairwise_hamming_distance(array1, array2):
"""Calculate hamming dissimilarity measure between two sets of
boolean vectors.
vectors.
Parameters
----------
array1 : (P1, D) array of dtype bool
P1 vectors of size D with boolean elements.
array2 : (P2, D) array of dtype bool
P2 vectors of size D with boolean elements.
array1 : (P1, D) array
P1 vectors of size D.
array2 : (P2, D) array
P2 vectors of size D.
Returns
-------