acldvppVpcBatchCropResizeAsync

Description

Crops one or more selected ROIs from each input image and loads the crop ROIs to the destination areas. A crop ROI will be resized again if it has a different size from the destination image. The resizing algorithm specified in resizeConfig is used. This API is asynchronous.

Restrictions

Model

Restriction

Atlas 200/300/500 Inference Product

Atlas Training Series Product

Prototype

aclError acldvppVpcBatchCropResizeAsync(acldvppChannelDesc *channelDesc,

acldvppBatchPicDesc *srcBatchPicDescs,

uint32_t *roiNums,

uint32_t size,

acldvppBatchPicDesc *dstBatchPicDescs,

acldvppRoiConfig *cropAreas[],

acldvppResizeConfig *resizeConfig,

aclrtStream stream)

Parameters

Parameter

Input/Output

Description

channelDesc

Input

Pointer to the channel description.

Must be the same as the channelDesc argument passed to the acldvppCreateChannel call.

srcBatchPicDescs

Input

Pointer to the description of batch input images.

roiNums

Input

Pointer to the number of crop ROIs. The maximum number of crop ROIs is 256.

roiNums is an array. The sum of the elements is up to 256, which must be consistent with batchSize in the dstBatchPicDescs struct.

roiNums[0]+...+roiNums[size-1] <= 256

size

Input

Length of the roiNums array, up to 256.

dstBatchPicDescs

Input/Output

Pointer to the description of batch output images.

When dstBatchPicDescs is used as an input, the user needs to:

cropAreas

Input

Pointer array for the crop ROIs.

Call acldvppCreateRoiConfig to create an ROI configuration.

resizeConfig

Input

Pointer to the image resizing configuration.

Call acldvppCreateResizeConfig to create an image resizing configuration in advance.

stream

Input

Stream.

Returns

0 on successful task delivery; else, failure.