DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / LookupTable Class / LookupTable Constructor
The source value mapped to the first value in the LUT
The number of bits in the LUT data
True if the LUT is supposed to apply to signed data
The LUT data






In This Topic
    LookupTable Constructor
    In This Topic
    Create a LUT from components
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal MinValue As System.Integer, _
       ByVal Bits As System.Integer, _
       ByVal SignedInput As System.Boolean, _
       ByVal Data As System.Array _
    )
    'Usage
     
    
    Dim MinValue As System.Integer
    Dim Bits As System.Integer
    Dim SignedInput As System.Boolean
    Dim Data As System.Array
     
    Dim instance As New LookupTable(MinValue, Bits, SignedInput, Data)
    public LookupTable( 
       System.int MinValue,
       System.int Bits,
       System.bool SignedInput,
       System.Array Data
    )
    public LookupTable( 
        MinValue: System.Integer;
        Bits: System.Integer;
        SignedInput: System.Boolean;
        Data: System.Array
    ); 
    public function LookupTable( 
       MinValue : System.int,
       Bits : System.int,
       SignedInput : System.boolean,
       Data : System.Array
    );
    public: LookupTable( 
       System.int MinValue,
       System.int Bits,
       System.bool SignedInput,
       System.Array* Data
    )
    public:
    LookupTable( 
       System.int MinValue,
       System.int Bits,
       System.bool SignedInput,
       System.Array^ Data
    )

    Parameters

    MinValue
    The source value mapped to the first value in the LUT
    Bits
    The number of bits in the LUT data
    SignedInput
    True if the LUT is supposed to apply to signed data
    Data
    The LUT data
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also