DicomObjects.NET10 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 Integer, _
       ByVal Bits As Integer, _
       ByVal SignedInput As Boolean, _
       ByVal Data As Array _
    )
    'Usage
     
    
    Dim MinValue As Integer
    Dim Bits As Integer
    Dim SignedInput As Boolean
    Dim Data As Array
     
    Dim instance As New LookupTable(MinValue, Bits, SignedInput, Data)
    public LookupTable( 
       int MinValue,
       int Bits,
       bool SignedInput,
       Array Data
    )
    public:
    LookupTable( 
       int MinValue,
       int Bits,
       bool SignedInput,
       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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also