助けてください
解決したいこと
魚眼カメラのキャリブレーションを行っていますが、以下のエラーが発生します。
python3.8
opencv4.2
発生している問題・エラー
Traceback (most recent call last):
File "C:\Users\FisheyeCalibrate.py", line 58, in stereo_calibrate
diff = left_corners - right_corners
TypeError: unsupported operand type(s) for -: 'list' and 'list'
以下が原因のコードです。
# Check for the flipped checkerboard!
diff = left_corners - right_corners
lengths = np.linalg.norm(diff[:, :, 1], axis=-1)
sum = np.sum(lengths, axis=0)
if (sum > 2000.0):
print("THIS STEREO PAIR IS BROKEN!!! Diff is: "+str(sum))
right_corners = np.flipud(right_corners)
0