AW00097603000 Standard Features
Basler aviator GigE 221
// Set the Controlled sequence advance mode and set line 1 as the
sequence
// control source for synchronous sequence set advance
Camera.SequenceAdvanceMode.SetValue( SequenceAdvanceMode_Controlled
);
Camera.SequenceControlSelector.SetValue(
SequenceControlSelector_Advance );
Camera.SequenceControlSource.SetValue( SequenceControlSource_Line1 );
// Set Disabled as the source because synchronous sequence set cycle
restart
// will not be used
Camera.SequenceControlSelector.SetValue(
SequenceControlSelector_Restart );
Camera.SequenceControlSource.SetValue( SequenceControlSource_Disabled
);
// 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( );