ImageGear .NET v25.1 - Updated
ImGearLinearLUT Constructor




ImageGear.Core Assembly > ImageGear.Core Namespace > ImGearLinearLUT Class : ImGearLinearLUT Constructor
Specifies input depth of the LUT.
Specifies whether LUT input is signed.
Specifies output depth of the LUT.
Specifies whether LUT output is signed.
Initializes a new instance of the ImGearLinearLUT class.
Syntax
'Declaration
 
Public Function New( _
   ByVal inputDepth As Integer, _
   ByVal inputIsSigned As Boolean, _
   ByVal outputDepth As Integer, _
   ByVal outputIsSigned As Boolean _
)
'Usage
 
Dim inputDepth As Integer
Dim inputIsSigned As Boolean
Dim outputDepth As Integer
Dim outputIsSigned As Boolean
 
Dim instance As New ImGearLinearLUT(inputDepth, inputIsSigned, outputDepth, outputIsSigned)
public ImGearLinearLUT( 
   int inputDepth,
   bool inputIsSigned,
   int outputDepth,
   bool outputIsSigned
)
public: ImGearLinearLUT( 
   int inputDepth,
   bool inputIsSigned,
   int outputDepth,
   bool outputIsSigned
)
public:
ImGearLinearLUT( 
   int inputDepth,
   bool inputIsSigned,
   int outputDepth,
   bool outputIsSigned
)

Parameters

inputDepth
Specifies input depth of the LUT.
inputIsSigned
Specifies whether LUT input is signed.
outputDepth
Specifies output depth of the LUT.
outputIsSigned
Specifies whether LUT output is signed.
Remarks
Slope and Intercept will be initialized to default values of 1.0 and 0.0. They should be initialized later, if necessary, via corresponding set properties.
See Also

Reference

ImGearLinearLUT Class
ImGearLinearLUT Members