How to name vide files by acquisition start time?
조회 수: 1 (최근 30일)
이전 댓글 표시
채택된 답변
Stephen23
2015년 2월 23일
편집: Stephen23
2015년 2월 23일
Use now or clock to grab the time value, and then convert this to a string using datestr. You can use datestr's optional formatOut argument to specify how you want the string to look like:
datestr(clock,12)
or
datestr(clock,'HH:MM:SS')
should work
댓글 수: 2
Stephen23
2015년 2월 23일
That depends entirely on which time value you want to use: at the trigger time, the begin or the end of the video sequence? You can try this yourself: try putting that code before start(vid), or before wait or after wait, depending on what time value you are interested in using.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 GigE Vision Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!