Impact Acquire SDK .NET

Category that includes the LUT control features. More...

Public Member Functions

 LUTControl (mv.impact.acquire.Device device)
 Constructs a new mv.impact.acquire.GenICam.LUTControl object.
 
 LUTControl (mv.impact.acquire.Device device, System.String settingName)
 Constructs a new mv.impact.acquire.GenICam.LUTControl object.
 

Public Attributes

readonly mv.impact.acquire.PropertyIBoolean LUTEnable = new mv.impact.acquire.PropertyIBoolean()
 A boolean property. Activates the selected LUT.
 
readonly mv.impact.acquire.PropertyI64 LUTIndex = new mv.impact.acquire.PropertyI64()
 An integer property. Control the index (offset) of the coefficient to access in the selected LUT.
 
readonly mv.impact.acquire.PropertyI64 LUTSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects which LUT to control.
 
readonly mv.impact.acquire.PropertyI64 LUTValue = new mv.impact.acquire.PropertyI64()
 An integer property. Returns the Value at entry LUTIndex of the LUT selected by LUTSelector.
 
readonly mv.impact.acquire.PropertyS LUTValueAll = new mv.impact.acquire.PropertyS()
 A string property. Accesses all the LUT coefficients in a single access without using individual LUTIndex.
 
readonly mv.impact.acquire.PropertyI64 mvLUTInputData = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Describes the data the LUT is operating on.
 
readonly mv.impact.acquire.PropertyI64 mvLUTMapping = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Describes mapping of the LUT.
 
readonly mv.impact.acquire.PropertyI64 mvLUTType = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Describes the type of LUT used.
 

Detailed Description

Category that includes the LUT control features.

A category that includes the LUT control features.

Constructor & Destructor Documentation

◆ LUTControl() [1/2]

Constructs a new mv.impact.acquire.GenICam.LUTControl object.

Parameters
[in]deviceA pointer to a mv.impact.acquire.Device object obtained from a mv.impact.acquire.DeviceManager object.

◆ LUTControl() [2/2]

LUTControl ( mv::impact::acquire::Device device,
System::String settingName )
inline

Constructs a new mv.impact.acquire.GenICam.LUTControl object.

Parameters
[in]deviceA pointer to a mv.impact.acquire.Device object obtained from a mv.impact.acquire.DeviceManager object.
[in]settingNameThe name of the driver internal setting to access with this instance. A list of valid setting names can be obtained by a call to mv.impact.acquire.FunctionInterface.availableSettings, new settings can be created with the function mv.impact.acquire.FunctionInterface.createSetting

Member Data Documentation

◆ LUTEnable

A boolean property. Activates the selected LUT.

Activates the selected LUT.

◆ LUTIndex

An integer property. Control the index (offset) of the coefficient to access in the selected LUT.

Control the index (offset) of the coefficient to access in the selected LUT.

◆ LUTSelector

An enumerated integer property. Selects which LUT to control.

Selects which LUT to control.

The following string values might be valid for this feature:

  • Luminance (Display string: 'Luminance'): Selects the Luminance LUT.
  • Red (Display string: 'Red'): Selects the Red LUT.
  • Green (Display string: 'Green'): Selects the Green LUT.
  • Blue (Display string: 'Blue'): Selects the Blue LUT.
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ LUTValue

An integer property. Returns the Value at entry LUTIndex of the LUT selected by LUTSelector.

Returns the Value at entry LUTIndex of the LUT selected by LUTSelector.

◆ LUTValueAll

A string property. Accesses all the LUT coefficients in a single access without using individual LUTIndex.

Accesses all the LUT coefficients in a single access without using individual LUTIndex.

◆ mvLUTInputData

An enumerated integer property. Describes the data the LUT is operating on.

Describes the data the LUT is operating on

The following string values might be valid for this feature:

  • Bayer (Display string: 'Bayer'): The LUT is operating on raw Bayer data (i.e. before debayering)
  • Gray (Display string: 'Gray'): The LUT is operating on gray data
  • RGB (Display string: 'RGB'): The LUT is operating on RGB data (i.e. after debayering)
  • DeviceSpecific (Display string: 'Device Specific'): The LUT is operating on device specific data
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLUTMapping

An enumerated integer property. Describes mapping of the LUT.

Describes the mapping of the LUT

The following string values might be valid for this feature:

  • map_8To12 (Display string: 'map 8 To 12'): The LUT maps 8 bit input data to 12 bit output data.
  • map_10To12 (Display string: 'map 10 To 12'): The LUT maps 10 bit input data to 12 bit output data.
  • map_10To10 (Display string: 'map 10 To 10'): The LUT maps 10 bit input data to 10 bit output data.
  • map_8To10 (Display string: 'map 8 To 10'): The LUT maps 8 bit input data to 12 bit output data.
  • map_12To10 (Display string: 'map 12 To 10'): The LUT maps 12 bit input data to 10 bit output data.
  • map_10To9 (Display string: 'map 10 To 9'): The LUT maps 10 bit input data to 9 bit output data.
  • map_12To9 (Display string: 'map 12 To 9'): The LUT maps 12 bit input data to 9 bit output data.
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLUTType

An enumerated integer property. Describes the type of LUT used.

Describes the type of LUT used.

The following string values might be valid for this feature:

  • Direct (Display string: 'Direct'): The user can define an output value for each input value of the LUT.
  • Interpolated (Display string: 'Interpolated'): The user can define the output values for equidistant nodes in the LUT. Linear interpolation is used to determine the output values for input values that lie in between the given nodes.
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.