LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
LookupTable Property
See Also 
Leadtools.ImageProcessing.Core Namespace > WindowLevelCommand Class : LookupTable Property



Gets or sets an optional lookup table that can be used to implement a user defined conversion. Supported in Silverlight, Windows Phone 7

Syntax

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

Property 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 RGB quad. If LookupTable is null, the conversion is a normal shift (right or left) and the output image is 8-bit grayscale. If LookupTable is not null, the output image is a 24-bit image.

Example

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also