PvaOperatorTypes#

Enumerations#

PVAImageResizeMethodType

Image resize interpolation method types.

PVAMixChannelsCode

MixChannels Operation Codes.

PvaMorphologyType

Morphology Operation Codes.

Enumerations#

enum PVAImageResizeMethodType#

Image resize interpolation method types.

Values:

enumerator IMAGE_RESIZE_NN#

Nearest neighbor.

enumerator IMAGE_RESIZE_LINEAR#

Bilinear interpolation.

enum PVAMixChannelsCode#

MixChannels Operation Codes.

Mix channels is a copy operation from a set of input channels to a set of output channels.

The set of inputs and outputs may be given by any number of input and output images, where each image may have one or more channels.

The channel mapping from input to output is given by two arrays, one with the indices of the input channels, and the another with the corresponding channel index in the output.

The channel indices are enumerated starting from zero and increasing monotonically across all channels of all images provided in the array. For example, given an array of 3 RGB images, index 5 corresponds to the B channel of the second image.

Values:

enumerator SPLIT_RGBA8_TO_U8#

split 1 rgba8 image into 4 u8 images, [0, 1, 2, 3] -> [0, 1, 2, 3]

enumerator MERGE_U8_TO_RGBA8#

merge 4 u8 images into 1 rgba8 image, [0, 1, 2, 3] -> [0, 1, 2, 3]

enum PvaMorphologyType#

Morphology Operation Codes.

Values:

enumerator PVA_ERODE#

Erode operation.

enumerator PVA_DILATE#

Dilate operation.