IMAQPLOT - Preview video data using callbacks

버전 1.1.0.1 (2.49 KB) 작성자: David Tarkowski
Demonstration of previewing Image Acquisition Toolbox video using Handle Graphics and callbacks.
다운로드 수: 4.8K
업데이트 날짜: 2016/9/1

라이선스 보기

편집자 메모: This file was a File Exchange Pick of the Week

IMAQPLOT is a simple demonstration of previewing video data using the toolbox's TimerFcn callback. IMAQPLOT also allows users to integrate the video preview into any MATLAB GUI. These are capabilities that are present in the toolbox's PREVIEW command, but are presented here as a demonstration of TimerFcn callback.
Using toolbox callback properties, you can configure a video input object to generate a live image plot display.

Do you want a basic preview window created for you? Simply call:

obj = videoinput('matrox', 1);
obj.TimerFcn = @imaqplot;
obj.TimerPeriod = 0.1;
obj.FramesPerTrigger = Inf;
start(obj)

Do you want to add a preview window to an existing GUI? Simply provide IMAQPLOT a handle to an image object and it will update it for you:

obj = videoinput('dt', 1);
obj.TimerFcn = {@imaqplot, hImage};
obj.TimerPeriod = 0.1;
obj.FramesPerTrigger = Inf;
start(obj)

인용 양식

David Tarkowski (2025). IMAQPLOT - Preview video data using callbacks (https://kr.mathworks.com/matlabcentral/fileexchange/5438-imaqplot-preview-video-data-using-callbacks), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R14
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.1

Updated license

1.1.0.0

Changed the description to more accurately reflect the purpose of the submission.

1.0.0.0