TIOVX User Guide
tiovx.lut.Lut Class Reference

Lut object (OpenVX equivalent = vx_lut) More...

Inherits tiovx.reference.Reference.

Public Member Functions

def __init__ (self, data_type, count, name="default")
 Constructor used to create this object. More...
 

Detailed Description

Lut object (OpenVX equivalent = vx_lut)

Example Usage: Create a LUT object of U8 of size 10
from tiovx import *
my_lut1 = Lut(Type.UINT8, 10, name="mylut")
my_lut2 = Lut(Type.UINT8, 10)

Definition at line 76 of file lut.py.

Constructor & Destructor Documentation

◆ __init__()

def tiovx.lut.Lut.__init__ (   self,
  data_type,
  count,
  name = "default" 
)

Constructor used to create this object.

See also
vxCreateLUT for more details about the parameters
Parameters
data_type[in] Data type. tiovx::enums::Type
count[in] Sizeof LUT
name[in] [optional] Name of the object

Definition at line 84 of file lut.py.


The documentation for this class was generated from the following file: