please any help to CHANGE THIS CODE to acquire one gray image per 3 minute
Mostrar comentarios más antiguos
hi i have this code that take video and many frame
all what i want is to take one gray image and one frame only avery 3 minute
imaqreset;
obj = videoinput('winvideo',1,'YUY2_640x480');
% triggerconfig(obj,'manual');
set(obj,'FramesPerTrigger',Inf);
set(obj,'ReturnedColorspace','RGB');
obj.FrameGrabInterval = 1;
framesneed = 1;
start(obj);
while(obj.FramesAcquired<=framesneed)
RGB2=getsnapshot(obj);
imshow(RGB2);
pause(3);
end
stop(obj);
delete(obj);
Respuestas (2)
Mahdi
el 3 de Abr. de 2013
0 votos
Change the pause line to pause(180). It reads it in seconds.
4 comentarios
mangood UK
el 3 de Abr. de 2013
Walter Roberson
el 3 de Abr. de 2013
FramesPerTrigger 1
ReturnedColorspace grayscale
Mahdi
el 3 de Abr. de 2013
Thanks Walter, I must be tired. I didn't notice the other questions.
mangood UK
el 3 de Abr. de 2013
mangood UK
el 3 de Abr. de 2013
0 votos
2 comentarios
Walter Roberson
el 4 de Abr. de 2013
Please show us the output of
devinfo = imaqhwinfo('winvideo', 1);
devinfo.SupportedFormats
mangood UK
el 6 de Abr. de 2013
Categorías
Más información sobre Video Formats and Interfaces en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!