Add new stop criteria to ransac and improve doc string

This commit is contained in:
Johannes Schönberger
2013-05-02 18:30:07 +02:00
parent 087fe8891e
commit fb74a9d8ae
2 changed files with 39 additions and 7 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class GeometricTransform(object):
"""
return np.sqrt(np.sum((self(src) - dst) ** 2, axis=1))
return np.sqrt(np.sum((self(src) - dst)**2, axis=1))
def __add__(self, other):
"""Combine this transformation with another.