Save Camera Calibration Parameters
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Erin
el 13 de Mzo. de 2014
Comentada: Aditi Singh
el 8 de Oct. de 2019
The export of camera parameters from the Camera Calibration toolbox creates its own type of variable that cannot be saved as a .mat. How can I save these so that I can load it when I want to use that camera instead of calibrating it every time? Is xml the only way?
Thanks, Erin
4 comentarios
Clive Fox
el 27 de Oct. de 2016
Editada: Clive Fox
el 27 de Oct. de 2016
There is a command toStruct(cameraParams) which seems to work,so if you have created a cameraParameters object in your workspace
mycamParams = toStruct(cameraParams)
save mycamParams.mat mycamParams %Saves as a mat file
clear %clear variables in workspace
load('mycamParams.mat') %loads it back in and Matlab recognises it is a structure
mycamParams=cameraParameters(parameterStruct) % recreates the camera parameters object which you can then use to undistort images etc.
Respuesta aceptada
Dima Lisin
el 1 de Mayo de 2014
Editada: Dima Lisin
el 1 de Mayo de 2014
You certainly can save the camera parameters object into a mat file, just like any other variable. Export the variable to workspace. Let's call it myParams. Then do
>> save myParams.mat myParams
That should work.
2 comentarios
Helia Sh
el 12 de Dic. de 2018
I kept getting an error: ""Argument must contain a character vector". I slightly modified Dima's suggestion to make it work for me:
>> save 'myParams' myParams
Matt J
el 12 de Dic. de 2018
Hard to see why the modification was necessary or made any difference. Maybe you were originally using the functional form of save as follows,
save('myParams',myParams)
Más respuestas (2)
Sean de Wolski
el 13 de Mzo. de 2014
With MATLAB R2014a, you can generate equivalent code with the app.

4 comentarios
Matt J
el 13 de Mzo. de 2014
Editada: Matt J
el 13 de Mzo. de 2014
You could write a customized save routine that exports the CameraParameters properties and saves them in a structure
function save_cameraParams(cpObject,fileName)
fields={'IntrinsicMatrix', 'RadialDistortion',etc...}
for ii=1:length(fields)
S.(fields{ii})=cpObject.(fields{ii});
end
save(fileName, 'S');
end
Then a similar one to reload and rebuild the vision.CameraParameters object,
function cpObject=load_cameraParams(fileName)
S=load(fileName); S=S.S
pairs=[fieldnames(S), struct2cell(S)].';
cpObject=vision.CameraParameters(pairs{:});
end
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Support Package for USB Webcams en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!