ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearFullLUT Class / Table Field




In This Topic
    Table Field
    In This Topic
    Provides direct access to the LUT table.
    Syntax
    'Declaration
     
    Public Table As Array
    'Usage
     
    Dim instance As ImGearFullLUT
    Dim value As Array
     
    value = instance.Table
     
    instance.Table = value
    public Array Table
    public: Array* Table
    public:
    Array^ Table

    Field Value

    byte[ ], Int16[ ] or Int32[ ]
    Remarks
    Actual type of the array depends on the output depth of the LUT:
    • If output depth is between 1 and 8, Table is byte[ ]
    • If output depth is between 9 and 16, Table is Int16[ ]
    • If output depth is between 17 and 32, Table is Int32[ ]

    Length of the table depends on the input depth, as follows:

    Length = 2 ^ inputDepth.
    See Also