OpenCV(cv2)中的undistortPoints与Python错误的结果

时间:2015-10-09 14:06:04

标签: python python-2.7 opencv

我尝试纠正图像和此图像上的一些点。 整顿图像效果很好(这部分代码不是来自我):

(mapx, mapy) = cv2.initUndistortRectifyMap(camera_matrix,dist_coefs,np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]]),newCameraMatrix,(int(resolution*w), int(resolution*h)), cv2.CV_32FC1)
RectImg = cv2.remap(img, mapx,mapy,cv2.INTER_LINEAR )

但是当我用undistortPoints和相同的参数纠正这些点时,我得到(我认为)错误的坐标。

point_file = np.loadtxt(fn)
point_matrix = np.zeros(shape=(nr_points,1,2))

# fill Pointfile in n x 1 x 2-Matrix
for each in range(0, nr_points):
    point_matrix[each][0][0] = point_file[each][0]
    point_matrix[each][0][1] = point_file[each][1]

point_matrix_new = cv2.undistortPoints(point_matrix, newCameraMatrix, dist_coefs)

这些是我正在使用的参数(newCameraMatrix& dist_coefs):

    [[  4.93906295e+02   0.00000000e+00   1.24539714e+03]
     [  0.00000000e+00   4.92616567e+02   1.03814593e+03]
     [  0.00000000e+00   0.00000000e+00   1.00000000e+00]]
    [  5.93179211e-01   3.59577119e-02  -3.34062329e-05  -8.92301489e-05
      -5.27895858e-04   9.28762999e-01   1.46636733e-01   0.00000000e+00]

我也不确定,实际输出是什么。结果值是图像坐标还是传感器坐标以及哪个单位?我只能找到cv(http://docs.opencv.org/modules/imgproc/doc/geometric_transformations.html)的undistortPoints文档,但不能找到cv2的文档。

示例(图片尺寸= 2448 x 2048像素/传感器尺寸= 8.6 x 6.6 mm

输入(point_matrix):

[[[    0.     0.]]

 [[ 2448.     0.]]

 [[    0.  2048.]]

 [[ 2448.  2048.]]

 [[ 1224.  1024.]]]

输出(point_matrix_new):

[[[-6.49236118 -5.42726306]]

 [[ 6.39989444 -5.5358653 ]]

 [[-6.50237385  5.28935346]]

 [[ 6.58981334  5.54673511]]

 [[-0.04336093 -0.02874159]]]

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

所以我发现了我的错误:我必须在cv2.initUndistortRectifyMap中的cv2.undistortPoints中使用旧的和新的相机矩阵。

所以为了纠正它我只是使用了这段代码:

point_matrix_new = cv2.undistortPoints(point_matrix,camera_matrix,dist_coefs,P=newCameraMatrix)