Error processing SSI file
LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

Show in webframe

LookupTable Property (WindowLevelCommand)








Gets or sets an optional lookup table that can be used to implement a user defined conversion.
Syntax
public RasterColor[] LookupTable {get; set;}
'Declaration
 
Public Property LookupTable As RasterColor()
'Usage
 
Dim instance As WindowLevelCommand
Dim value() As RasterColor
 
instance.LookupTable = value
 
value = instance.LookupTable
public RasterColor[] LookupTable {get; set;}
@property (nonatomic, strong) NSMutableArray<LTRasterColor *> *lookupTable
public RasterColor[] getLookupTable()
public void setLookupTable(RasterColor[] value)
            
 <br/>get_LookupTable();<br/>set_LookupTable(value);<br/>Object.defineProperty('LookupTable'); 
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
Refer to WindowLevelCommand.
Requirements

Target Platforms

See Also

Reference

WindowLevelCommand Class
WindowLevelCommand Members

Error processing SSI file