User`s guide

Set Properties for GigE Acquisition
11-7
g = gigecam(1, 'ExposureTime', 20000, 'PixelFormat', 'Mono10')
Set a Property After Creating the Object
You can set or change properties any time after you create the object, using this syntax,
where g is the object name.
g.ExposureTime = 20000
If you want to change the Timeout from its default value of 10 seconds, to increase it to
20 seconds for example, use this syntax.
g.Timeout = 20
This way of setting properties also supports both character strings and numerics.
g.LinLog_Mode = 'On';
Use GigE Commands
You can use any of the GigE camera commands that your camera supports.
The commands function tells you what commands are available for your camera to use.
The output depends on the commands that are supported by your specific hardware. To
get the list, use the commands function with the object name, which is g in this example.
commands(g)