def undistort_points(self, src):
"""
:param src: N source pixel points (u,v) as an Nx2 matrix
:type src: :class:`cvMat`
Apply the post-calibration undistortion to the source points
"""
return cv2.undistortPoints(src, self.intrinsics, self.distortion, R = self.R, P = self.P)
calibrator.py 文件源码
python
阅读 33
收藏 0
点赞 0
评论 0
评论列表
文章目录