Image Acquisition Control
Basler pilot 79
// set camera in continous mode
Camera.AcquisitionMode.SetValue( AcquisitionMode_Continuous );
// set a frame rate and getting the resulting frame rate
Camera.AcquisitionFrameRateEnable.SetValue( true );
Camera.AcquisitionFrameRateAbs.SetValue( 20.5 );
double resultingFrameRate = Camera.ResultingFrameRateAbs.GetValue();
You can also execute the Acquisition Start and Stop commands by using the API.
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 29.
For more information about the camera’s exposure time parameter, see Section 8.4 on page 91.
For more information about determining the maximum allowed acquisition frame rate, see
Section 8.9 on page 102.
Note
The explanations in Section 8.1.2 and Section 8.1.3 are intended to give you
a basic idea of how parameters alone can be used to control image
acquisition. For a more complete description, refer to the Basler pylon
Programmer’s Guide and to the sample programs included in the Basler pylon
Software Development Kit (SDK).