VPI - Vision Programming Interface

3.0 Release

Convolution.h File Reference

Declares functions to perform image filtering with convolution kernels. More...

#include "../Export.h"
#include "../Status.h"
#include "../Types.h"
#include <stdint.h>
+ Include dependency graph for Convolution.h:

Go to the source code of this file.

Functions

VPIStatus vpiSubmitConvolution (VPIStream stream, uint64_t backend, VPIImage input, VPIImage output, const float *kernelData, int32_t kernelWidth, int32_t kernelHeight, VPIBorderExtension border)
 Runs a generic 2D convolution over an image. More...
 
VPIStatus vpiSubmitSeparableConvolution (VPIStream stream, uint64_t backend, VPIImage input, VPIImage output, const float *kernelXData, int32_t kernelXSize, const float *kernelYData, int32_t kernelYSize, VPIBorderExtension border)
 Runs a generic 2D convolution operation over an image, optimized for separable kernels. More...
 

Detailed Description

Declares functions to perform image filtering with convolution kernels.

Definition in file Convolution.h.