ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearLinearLUT Class / Item Property / Item(Int64) Property
Index of the LUT to get.




In This Topic
Item(Int64) Property
In This Topic
Gets or sets LUT output value corresponding to Int64 input value.
Syntax
'Declaration
 
Public Overloads Overrides Property Item( _
   ByVal index As Long _
) As Long
 
'Usage
 
Dim instance As ImGearLinearLUT
Dim index As Long
Dim value As Long
 
instance.Item(index) = value
 
value = instance.Item(index)

Parameters

index
Index of the LUT to get.

Property Value

Long number.
Remarks
LUT output value the formula is: result = input_value * Slope + Intercept + 0.5.

Set accessor throws exception, because such operation is invalid for this type of LUT.

See Also