Преглед изворни кода

add rcond=-1 to suppress warning

quarrying пре 4 година
родитељ
комит
f642e019a7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      khandy/image/align_and_crop.py

+ 1 - 1
khandy/image/align_and_crop.py

@@ -31,7 +31,7 @@ def get_similarity_transform(src_pts, dst_pts):
         b[2 * k + 0] = dst_pts[k, 0]
         b[2 * k + 1] = dst_pts[k, 1]
         
-    x = np.linalg.lstsq(A, b)[0]
+    x = np.linalg.lstsq(A, b, rcond=-1)[0]
     xform_matrix = np.empty((3, 3))
     xform_matrix[0] = [x[0], -x[1], x[2]]
     xform_matrix[1] = [x[1], x[0], x[3]]