TIOVX User Guide
tiovx.convolution.Convolution Class Reference

Convolution object (OpenVX equivalent = vx_convolution) More...

Inherits tiovx.reference.Reference.

Public Member Functions

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

Detailed Description

Convolution object (OpenVX equivalent = vx_convolution)

Example Usage: Create a convolution object of 10 rows, 15 coloumns
from tiovx import *
my_conv1 = Convolution(10, 15, name="myconvolution")
my_conv2 = Convolution(10, 15)

Definition at line 77 of file convolution.py.

Constructor & Destructor Documentation

◆ __init__()

def tiovx.convolution.Convolution.__init__ (   self,
  columns,
  rows,
  name = "default" 
)

Constructor used to create this object.

See also
vxCreateConvolution for more details about the parameters
Parameters
columns[in] Number of columns
rows[in] Number of rows
name[in] [optional] Name of the object

Definition at line 85 of file convolution.py.


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