gpt4 book ai didi

python - 无法使用 OpenCv undistortPoints 方法取消扭曲点

转载 作者:太空宇宙 更新时间:2023-11-03 21:50:25 25 4
gpt4 key购买 nike

我正在尝试使用 OpenCV 的“取消扭曲点”方法取消扭曲图像的某些点,但没有成功。 Here an example where I undistort all the whole picture

这些将是我的无失真系数

  optic_camera_matrix: [[710.52285,  0.0,      882.14702],
[0.0, 713.9636, 638.8421],
[0.0, 0.0, 1.0]],

distorsion_coeffs: [[-0.4176419401669212,
0.15978235598732332,
-8.299875092923166e-05,
-0.001784191694247801,
-0.027396621999692457]],

即使我能够对整个图像进行反失真处理,但为了优化相机处理时间,如果我只对角点(图像的红点)进行反失真处理:

distorted_border_points = np.array([[[584,1415],
[576,457],
[1956,415],
[1996,1422],
[1261,242],
[1281,1594]]],np.float32)

undistorted_points = cv2.undistortPoints(distorted_border_points, optic_camera_matrix, distorsion_coeffs)

我得到这个作为返回:

[[[ -6.40190065e-01   1.66883194e+00]
[ -4.87006754e-01 -2.88225353e-01]
[ -1.82562262e-01 3.74070629e-02]
[ -5.28450182e-04 -3.51850584e-04]
[ 8.09574544e-01 -8.40054870e-01]
[ -5.28259724e-02 -1.22379906e-01]]]

如果绘制,它们不会像第一张图片那样在矩形中对齐。

我相信未失真系数计算得很好(因为未失真对第一张图像有效),但我在这里附上凸轮的代码

import glob
import cv2
import numpy as np
import os
import json
import numpy as np

directory = os.path.dirname(__file__)


def get_optic_calibration_parameters(device,config_folder=None):
if config_folder is None:
optic_calibration_path = directory + '/../config/' + \
device + '/optic_calibration.json'
else:
optic_calibration_path = config_folder + device + '/optic_calibration.json'

if not os.path.exists(optic_calibration_path):
os.makedirs(optic_calibration_path[:-22])

with open(optic_calibration_path) as optic_calibration_file:
optic_calibration = json.load(optic_calibration_file)

optic_camera_matrix = optic_calibration['optic_camera_matrix']
distorsion_coeffs = optic_calibration['distorsion_coeffs']
optic_resolution = optic_calibration['optic_resolution']

return optic_camera_matrix, distorsion_coeffs, optic_resolution


def _save_calibration_parameters(camera_matrix, distorsion_coeffs, optic_resolution, device, config_folder=None):

if config_folder is None:
optic_calibration_path = directory + '/../config/' + \
device + '/optic_calibration.json'
else:
optic_calibration_path = config_folder + device + '/optic_calibration.json'

if not os.path.exists(optic_calibration_path):
os.makedirs(optic_calibration_path[:-22])

optic_calibration_parameters = {'optic_camera_matrix': camera_matrix.tolist(),
'distorsion_coeffs': distorsion_coeffs.tolist(),
'optic_resolution': optic_resolution}

with open(optic_calibration_path, 'wb') as optic_calibration_file:
json.dump(optic_calibration_parameters, optic_calibration_file)

return


def _get_image_points(plot=False, dim=(4, 5), input_dir='calibration_samples',extension='jp'):
criteria = (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 30, 0.001)

# prepare object points, like (0,0,0), (1,0,0), (2,0,0) ....,(6,5,0)
objp = np.zeros((dim[0] * dim[1], 3), np.float32)
objp[:, :2] = np.mgrid[0:dim[1], 0:dim[0]].T.reshape(-1, 2)

# Arrays to store object points and image points from all the images.
objpoints = [] # 3d point in real world space
imgpoints = [] # 2d points in image plane.

images = glob.glob(input_dir + '*.'+extension+'*')
for fname in images:
img = cv2.imread(fname)
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# Find the chess board corners
ret, corners = cv2.findChessboardCorners(gray, (dim[1], dim[0]), None)

# If found, add object points, image points (after refining them)
if ret == True:
objpoints.append(objp)

corners2 = cv2.cornerSubPix(
gray, corners, (11, 11), (-1, -1), criteria)
imgpoints.append(corners2)

# Draw and display the corners
if plot:
img = cv2.drawChessboardCorners(
img, (dim[1], dim[0]), corners2, ret)
cv2.imshow('img', img)
cv2.waitKey(500)

resolution = (img.shape[1], img.shape[0])

return imgpoints, objpoints, resolution


def calibrate_camera(optic_resolution, imgpoints, objpoints, device, config_folder=None):

_, camera_matrix, distorsion_coeffs, _, _ = cv2.calibrateCamera(
objpoints, imgpoints, optic_resolution, None, None)

_save_calibration_parameters(
camera_matrix, distorsion_coeffs, optic_resolution, device, config_folder=config_folder)

return

为了执行函数,我加载了不同的图像:

imgpoints, objpoints, optic_resolution = _get_image_points(plot=False, dim=(4,5), input_dir=calibration_samples)
_show_N_chessborders(N=3, dim=(4,5), input_dir=calibration_samples)
calibrate_camera(optic_resolution, imgpoints, objpoints,device, config_folder=config_folder)

这就是我存储 json 配置文件的方式

如果有人能帮助我解决问题,我将不胜感激。谢谢!

最佳答案

如果我理解正确,getOptimalNewCameraMatrix 函数仅适用于当您不想在不扭曲整个图像的同时出现黑边时(请参阅 this 问题),而不是当您需要时不扭曲个别点。此外,undistortPoints 中的 PR 似乎仅适用于立体视觉。

我会简化它,然后说:

undistorted_points =  cv2.undistortPoints(np.array(points), optical_camera_matrix, d) 

其中 optical_camera_matrix 是直接来自 calibrateCamera 函数的矩阵。只需确保 points1xN or Nx1 2-channel数组。

更新:

我意识到问题是什么。秘诀就是这句话 website .

Also the function performs a reverse transformation to projectPoints()

据我了解(如果我错了请纠正我)未失真的点被归一化了。为了将它们放回像素单位,只需执行以下操作(伪代码):

for each point in undistorted_points:
point = point * focal_length + boresight

希望对您有所帮助!

关于python - 无法使用 OpenCv undistortPoints 方法取消扭曲点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52075881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com