User`s guide
imaqmontage
Purpose Sequence of im age frames as montage
Syntax imaqmontage(frames)
imaqmontage(obj)
imaqmontage(...,CLIM)
imaqmontage(..., 'CLim', CLIM, 'Parent', PARENT)
h = imaqmontage(...)
Description imaqmontage(frames) displays a montage of image frames in a
MATLAB figure window using the
imagesc function.
frames can be any data set returned by getdata, pee kdat a,or
getsnapshot.
imaqmontage(obj)
calls the getsnapshot function on video input object
obj and d isplays a single image fram e in a MATLAB figure window
using the
imagesc function. obj must be a 1-by-1 video input object.
imaqmontage(...,CLIM) displays a montag e of image f rames, where
CLIM is a two-ele ment vector, [CLOW CHIGH],specifyingtheimage
scaling. Use
CLIM to specify a scalin g value when oversc al in g the image
data is a risk, for example, when you are working with devices that
provide data in a 12 -b it format.
imaqmontage(..., 'CLim', CLIM, 'Parent', PARENT) where CLIM is
as noted previously, and
PARENT is a valid AXES object that allows you
to specify where the montage is displayed. One or both property/value
pairs can be specified. See the example below.
h = imaqmontage(...) returns a handle to an image object.
Examples Construct a video input object associated with a M atrox device at ID 1.
obj = videoinput('mat rox', 1);
Initiate an acquisition and access the logged data.
start(obj);
data = getdata(obj);
12-27