Image Acquisition Control AW00011916000
140 Basler scout GigE
// Set the source for the selected trigger
Camera.TriggerSource.SetValue ( TriggerSource_Line1 );
// Set the trigger activation mode to rising edge
Camera.TriggerActivation.SetValue( TriggerActivation_RisingEdge );
// Set for the trigger width exposure mode
Camera.ExposureMode.SetValue( ExposureMode_TriggerWidth );
// Prepare for frame acquisition here
Camera.AcquisitionStart.Execute( );
while ( ! finished )
{
// Frame acquisition will start each time the externally generated
// acquisition start trigger signal (ExASTrig signal)goes high
// Retrieve the captured frames
}
Camera.AcquisitionStop.Execute( );
For detailed information about using the pylon API, refer to the Basler pylon Programmer’s Guide
and API Reference.
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon Viewer, see Section 3.1 on page 43.