Kesinlikle, Rodrigues fonksiyonunda bir hata ...
İlgili dokümanı okursanız, cv2.Rodrigues
bunun 2 farklı arayüzü olduğunu görebilirsiniz :
C ++ arayüzünü taklit eden, burada dönme vektörü (ve isteğe bağlı olarak jacobian) referans ile geçirilir ve fonksiyon tarafından değiştirilir
cv2.Rodrigues(src, dst[, jacobian]) --> None
ve bir (daha fazla Pythonic) burada dönme vektörü ve jacobian bir demet olarak döndürülür
cv2.Rodrigues(src) --> dst, jacobian
İlk arayüzü kullanırsanız, pb yok olur ...
import numpy as np
import cv2
def changes():
rmat=np.eye(4)
tvec=np.zeros(3)
#(rvec, jacobian)=cv2.Rodrigues(rmat)
cv2.Rodrigues(rmat, tvec)
print(tvec)
for i in range(2):
changes()
Sonuç:
[0. 0. 0.]
[0. 0. 0.]
Daha fazla araştırmadan sonra DÜZENLE:
İşlev beklendiği gibi daha da hatalıdır: ilk arayüzü kullanırken, parametreler dst
ve jacobian
değiştirilmemiştir, bu da docstring ile tamamen kasılıdır:
>>> help(cv2.Rodrigues)
Help on built-in function Rodrigues:
Rodrigues(...)
Rodrigues(src[, dst[, jacobian]]) -> dst, jacobian
. @brief Converts a rotation matrix to a rotation vector or vice versa.
.
. @param src Input rotation vector (3x1 or 1x3) or rotation matrix (3x3).
. @param dst Output rotation matrix (3x3) or rotation vector (3x1 or 1x3), respectively.
. @param jacobian Optional output Jacobian matrix, 3x9 or 9x3, which is a matrix of partial
. derivatives of the output array components with respect to the input array components.
Başka bir deyişle, bu açıkça bir hata raporu gerektirir ...