Standard Features AW00011916000
268 Basler scout GigE
// Set the total number of sequence sets
Camera.SequenceSetTotalNumber.SetValue( 2 );
// Select sequence set with index number 0
Camera.SequenceSetIndex.SetValue( 0 );
// Set up the first acquisition scenario (lighting, object position, etc.) and
// adjust the camera parameters for the best image quality.
// Store the sequence parameter values from the active set in the selected
// sequence set
Camera.SequenceSetStore.Execute( );
// Select sequence set with index number 1
Camera.SequenceSetIndex.SetValue( 1 );
// Set up the second acquisition scenario (lighting, object position, etc.) and
// adjust the camera parameters for the best image quality.
// Store the sequence parameter values from the active set in the selected
// sequence set
Camera.SequenceSetStore.Execute( );
// Enable the sequencer feature
Camera.SequenceEnable.SetValue( true );
The following code snippet illustrates using the API to load the sequence parameter values from
sequence set 0 into the active set:
// Select sequence set with index number 0
Camera.SequenceSetIndex.SetValue( 0 );
// Load the sequence parameter values from the sequence set into the active set
Camera.SequenceSetLoad.Execute( );
You can also use the Basler pylon Viewer application to easily set the parameters.