User`s guide

get
Purpose Image acquisition object properties
Syntax get(obj)
V = get(obj)
V = get(obj,Property Name)
Description get(obj) displays all property names and their current values for
image acquisition object
obj.
V = get(obj) returns a structure, V, in w hich e a ch field name is the
name of a p roperty of
obj and each field contains the value of that
property.
V = get(obj,Property Name) returns the value of the property
specified by
PropertyName for image acquisition object obj.Usethe
get(obj) syntax to view a list of all the properties supported by a
particular image a cquisition object.
If
PropertyName is a 1-by-N o r N-by-1 cell array o f strings containing
property names,
V is a 1-by-N cell array of values. If obj is a vec tor of
image acquisition objects,
V is an M-by-N cell array of property values
where M is equal to the length of
obj and N is equal to the number of
properties specified.
Examples vid = videoinput('mat rox', 1);
get(vid, {'FramesP erTr igger','FramesAcquir ed'})
out = get(vid, 'LoggingMode')
get(vid);
See Also set, videoinput
12-8