Change Read Only Properties to writable?
137 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Joep
el 16 de Feb. de 2015
Respondida: Joel David Berkson
el 1 de Jul. de 2021
Using the vision toolbox for camera calibration you get the cameraParams out. These params are only read. How is it possible to do some changes in these params or a good way to by pass these limia
cameraParams=estimateCameraParameters(imagePoints, worldPoints)
Why I want to change it, I want to use a different radial and tangential distortion which I found in C+ with OpenCV and create a undistorted image and it's undistorted points.
1 comentario
wei le
el 7 de Mzo. de 2018
Editada: wei le
el 7 de Mzo. de 2018
cameraParameters = vision.CameraParameters returns an object that contains the intrinsic, extrinsic, and lens distortion parameters of a camera. cameraParameters = vision.CameraParameters(Name,Value) configures the camera parameters object properties, specified as one or more Name,Value pair arguments. Unspecified properties use default values.
Respuesta aceptada
Dima Lisin
el 16 de Feb. de 2015
Hi Joep,
You can create another cameraParameters object using the constructor, and pass in all the parameters using name-value pairs. Fore example, let's say you have cameraParams1, and you want to replace its radial and tangential distortion coefficients. You can do the following:
cameraParams2 = cameraParameters('IntrinsicMatrix', ...
cameraParams1.IntrinsicMatrix, 'RadialDistortion', [0.2, -0.1], ...
'TangentialDistortion', [0.1, 0.1]);
Out of curiosity, what makes you think that the distortion coefficients you found using OpenCV are better?
4 comentarios
Dima Lisin
el 17 de Feb. de 2015
Editada: Dima Lisin
el 17 de Feb. de 2015
Yes, the matrix is transposed, because of the different vector-matrix multiplication convention used by the MATLAB Computer Vision System toolbox. But also the pixel coordinates in OpenCV are off by 1, relative to those in MATLAB. In matlab the center of the top-left pixel of the image is (1,1). In OpenCV it is (0,0). That's why the optical center (u0, v0) will be one less in OpenCV.
I was wrong about the units of the distortion coefficients. They are, in fact, dimensionless. Please see my answer to your other question.
Más respuestas (1)
Joel David Berkson
el 1 de Jul. de 2021
Found a much better way to do this! Use the 'toStruct' function on the cameraparamets (this converts it to a normal struct that can be editted) then use the cameraParameters function to convert it back :-)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!