フィルターのクリア

How to log acquired data to disk, and save the video file as mp4 or .avi ?

3 ビュー (過去 30 日間)
Koohyar
Koohyar 2020 年 9 月 7 日
コメント済み: Koohyar 2020 年 9 月 9 日
Hi,
I am trying to log acquired data to disk, and save the video file as mp4 or .avi, but it doesn't create any file in the folder? Any advice would be appreciated.
thanks.
clear ;
close all;
vid = videoinput('winvideo', 1, 'YUY2_640x480');
vid.Timeout = 20;
set(vid, 'FrameGrabInterval', 2);
vid.LoggingMode = 'disk';
logfile = VideoWriter('MATLAB.mp4', 'MPEG-4')
vid.FramesPerTrigger = 20;
start( vid );
wait( vid, Inf );
[d t] = getdata( vid, vid.FramesAvailable );
fps = 1 / mean( diff( t ) );
vid.ReturnedColorSpace = 'grayscale'
preview(vid);
start(vid);
pause(2);
frames = getdata(vid);
stop(vid)
clear vid

回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2020 年 9 月 7 日
Hi,
Probably, you'd need to indicate the directory of your log data as a whole, e.g.: '../dir/videos/MATLAB.mp4'
  5 件のコメント
Koohyar
Koohyar 2020 年 9 月 8 日
I can log to disk according to another script, but not as 'graysclae', whcih I am looking for! I dont know how can I return the colorspace to graysclae?
vidobj = videoinput('winvideo', 1, 'YUY2_640x480');
vidobj.LoggingMode = 'disk'
vidobj.DiskLogger = VideoWriter('logfile.mp4', 'MPEG-4')
vidobj.ReturnedColorSpace = 'grayscale'
vidobj.FramesPerTrigger = 30;
start(vidobj)
wait(vidobj)
while (vidobj.FramesAcquired ~= vidobj.DiskLoggerFrameCount)
pause(.1)
end
vidobj.FramesAcquired
vidobj.DiskLoggerFrameCoun
delete(vidobj)
clear vidobj
Koohyar
Koohyar 2020 年 9 月 9 日
my Matlab version is R2020a

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by