1
我試圖使用方法cv2.estimateAffine3D但沒有成功。這裏是我的代碼示例:OpenCV 2.4在Python中估計Affine3D
import numpy as np
import cv2
shape = (1, 4, 3)
source = np.zeros(shape, np.float32)
# [x, y, z]
source[0][0] = [857, 120, 854]
source[0][1] = [254, 120, 855]
source[0][2] = [256, 120, 255]
source[0][3] = [858, 120, 255]
target = source * 10
retval, M, inliers = cv2.estimateAffine3D(source, target)
當我嘗試運行此示例中,我得到了同樣的錯誤,因爲這等崗位here。
我使用的是OpenCV 2.4.3和Python 2.7.3
請幫幫我!