Matlab has a function to undistort an image. It takes two parameters. A matrix for image and the cameraParameters. Something like that -
undistortImage(I, cameraParams);
OpenCV has also a function to undistort an image. It takes 4 parameters. It looks like this -
undistort(image, imageUndistorted, intrinsic, distCoeffs);
Here, the input image is the same for both the function. I know the cameraParams. Is there any way to get intrinsic and distCoeffs from cameraParams as I can able to undistort an image in OpenCV?
My question is, Can it possible to make an equation to get intrinsic and distCoeffs from cameraParams?
question from:
https://stackoverflow.com/questions/65651356/conversion-of-undistortimage-matlab-function-to-opencv 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…