User`s manual
Physical Interface AW00049313000
64 Basler runner
You can set the signal width from within your application by using a dynamic API. The following code
snippet illustrates setting parameter value:
// Select the output line
Camera.LineSelector.SetValue(LineSelector_Out1);
// Set the parameter value to 10.0 microseconds
Camera.MinOutPulseWidthAbs.SetValue(10.0);
For more information about selecting the source signal for an output line on the camera, see
Section 7.7.2.4 on page 65.
For more information about the electrical characteristics of the camera’s output lines, see
Section 7.7.2 on page 61.
7.7.2.3 Output Line Inverters
You can set each individual output line to invert or not to invert the outgoing signal. To set the invert
function on an output line:
Use the Line Selector to select an output line.
Set the value of the Line Inverter parameter to true to enable inversion on the selected line and
to false to disable inversion.
You can set the Line Selector and the Line Inverter parameter value from within your application
software by using the pylon API. The following code snippet illustrates using the API to set the
selector and the parameter value:
// Enable the inverter on output line 1
Camera.LineSelector.SetValue( LineSelector_Out1 );
Camera.LineInverter.SetValue( true );
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 17.










