How can I save my camera parameters in a .mat or text file; for example exposure time and ISO value?
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Malu
 el 21 de Ag. de 2020
  
    
    
    
    
    Comentada: Malu
 el 24 de Ag. de 2020
            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
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
				Más información sobre Image Acquisition Toolbox Supported Hardware en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

