Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
LookupTable Property
See Also 
Leadtools.ImageProcessing.Core Namespace > WindowLevelExtCommand Class : LookupTable Property



Gets or sets an optional 16-bit lookup table that can be used to implement a user defined conversion.

Syntax

Visual Basic (Declaration) 
Public Property LookupTable As RasterColor16()
Visual Basic (Usage)Copy Code
Dim instance As WindowLevelExtCommand
Dim value() As RasterColor16
 
instance.LookupTable = value
 
value = instance.LookupTable
C# 
public RasterColor16[] LookupTable {get; set;}
C++/CLI 
public:
property array<RasterColor16>^ LookupTable {
   array<RasterColor16>^ get();
   void set (RasterColor16array<value>^ value);
}

Return Value

Optional lookup table that can be used to implement a user defined conversion. For every intensity value between 0 and 2 raised to the power of (HighBit - LowBit + 1) - 1 there should be a corresponding entry in the lookup table that contains an 16-bit RGB quad. If LookupTable is null, the conversion is a normal shift (right or left) and the output image is 16-bit grayscale. If LookupTable is not null, the output image is a 48-bit image.

Example

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also