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



Array of short values which contains the lookup table. Supported in Silverlight, Windows Phone 7

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 (    array<short>^ value);
}

Property 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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also