retrieve information of timestamp using 'preview'
3 ビュー (過去 30 日間)
古いコメントを表示
Hi, I use 'preview' in order to see my videoinput from a USB camera. In the plot of the preview Timestamp is visible, but how can the data of timestamp be extracted to a vector? The idea is such that the only each 20 seconds a frame is recorded using snapshot.
clear all; close all; clc; camList = webcamlist % Connect to the webcam. cam1 = webcam(1) cam2 = webcam(3) preview(cam1); preview(cam2);
0 件のコメント
回答 (1 件)
Malu
2020 年 8 月 10 日
[ frames, timestamps] = getdata(vidObj); % here you are acquiring the data from your video object
save('frames.mat','frames') ;
save('timestamps.mat','timestams');
you can save them as a matrix.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!