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 > ApplyVoiLookupTableCommand Class : LookupTable Property



Array of short values which contains the lookup table.

Syntax

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

Return Value

Array of short values which contains the lookup table. Its length determines the number of entries. All the pixels that are greater than FirstStoredPixelValueMapped + (LookupTable->Length) will be set to the last entry in the LookupTable (LookupTable[LookupTable->Length - 1]).

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