How can I save my camera parameters in a .mat or text file; for example exposure time and ISO value?

조회 수: 9 (최근 30일)
I am acquiring a specific number of frames, with the code below, and I would like to have the information of video objects properties also written into .mat file or a text file. For example: exposure time and the ISO value . Is that possible?
Cheers,
Malu
triggerconfig(vid,'manual');
vid.ReturnedColorSpace = 'grayscale';
vid.TriggerRepeat = inf; %excecute trigger inf
src.ExposureMode = 'Timed'; % Needed to alter the exposure time
src.ExposureTime = 10000; % the time is in seconds
e_time = src.ExposureTime;
set(vid,'Timeout',12); %time out after 12 seconds
start(vid)
tic
trigger(vid)
[frames , ts ] = getdata(vid);
toc

채택된 답변

Devineni Aslesha
Devineni Aslesha 2020년 8월 24일
Hi Malu,
Here is a similar question on how to save cameraParameters to a .mat or .txt file using save.
  댓글 수: 1
Malu
Malu 2020년 8월 24일
Thank you for your reply!
I set a variable for the information I wanted to get from the source :
a = get(src);
save('Source.mat', 'a')
and it works .

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by