TIOVX User Guide
tiovx.remap.Remap Class Reference

Remap object (OpenVX equivalent = vx_remap) More...

Inherits tiovx.reference.Reference.

Public Member Functions

def __init__ (self, src_width, src_height, dst_width, dst_height, name="default")
 Constructor used to create this object. More...
 

Detailed Description

Remap object (OpenVX equivalent = vx_remap)

Example Usage: Create a Remap object
from tiovx import *
my_remap1 = Remap(640, 480, 320, 240, name="myremap")
my_remap2 = Remap(640, 480, 320, 240)

Definition at line 76 of file remap.py.

Constructor & Destructor Documentation

◆ __init__()

def tiovx.remap.Remap.__init__ (   self,
  src_width,
  src_height,
  dst_width,
  dst_height,
  name = "default" 
)

Constructor used to create this object.

See also
vxCreateRemap for more details about the parameters
Parameters
src_width[in] Width of source image
src_height[in] Height of source image
dst_width[in] Width of destination image
dst_height[in] Height of destination image
name[in] [optional] Name of the object

Definition at line 86 of file remap.py.


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