
Standard Features
AW00011916000
286
Basler scout GigE
Changing the Values in the Luminance Lookup Table and Enabling the Table
You can change the values in the luminance lookup table (LUT) and enable the use of the lookup
table by doing the following:
Use the LUT Selector to select a lookup table. (Currently there is only one lookup table
available, i.e., the "luminance" lookup table described above.)
Use the LUT Index parameter to select a value in the lookup table. The LUT Index parameter
selects the value in the table to change. The index number for the first value in the table is 0,
for the second value in the table is 1, for the third value in the table is 2, and so on.
Use the LUT Value parameter to set the selected value in the lookup table.
Use the LUT Index parameter and LUT value parameters to set other table values as desired.
Use the LUT Enable parameter to enable the table.
You can set the LUT Selector, the LUT Index parameter and the LUT Value parameter 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 values:
// Select the lookup table
Camera.LUTSelector.SetValue( LUTSelector_Luminance );
// Write a lookup table to the device.
// The following lookup table causes an inversion of the sensor values
// ( bright -> dark, dark -> bright )
for ( int i = 0; i < 1024; i += 2 )
{
Camera.LUTIndex.SetValue( i );
Camera.LUTValue.SetValue( 1023 - i );
}
// Enable the lookup table
Camera.LUTEnable.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 43
.
Содержание scout GigE
Страница 4: ......
Страница 50: ...Specifications Requirements and Precautions AW00011916000 40 Basler scout GigE...
Страница 52: ...Installation AW00011916000 42 Basler scout GigE...
Страница 66: ...Basler Network Drivers and Parameters AW00011916000 56 Basler scout GigE...
Страница 80: ...Network Related Camera Parameters and Managing Bandwidth AW00011916000 70 Basler scout GigE...
Страница 184: ...Image Acquisition Control AW00011916000 174 Basler scout GigE...
Страница 206: ...Color Creation and Enhancement AW00011916000 196 Basler scout GigE...
Страница 232: ...Pixel Data Formats AW00011916000 222 Basler scout GigE...
Страница 354: ...Chunk Features AW00011916000 344 Basler scout GigE...
Страница 358: ...Troubleshooting and Support AW00011916000 348 Basler scout GigE...
Страница 367: ...AW00011916000 Revision History Basler scout GigE 357...
Страница 368: ...Revision History AW00011916000 358 Basler scout GigE...