Function: dvpp_vpc_batch_crop_resize_async
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
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 resize_config is used. This API is asynchronous.
Prototype
- C Prototype
1aclError acldvppVpcBatchCropResizeAsync(acldvppChannelDesc *channelDesc,acldvppBatchPicDesc *srcBatchPicDescs,uint32_t *roiNums,uint32_t size,acldvppBatchPicDesc *dstBatchPicDescs,acldvppRoiConfig *cropAreas[],acldvppResizeConfig resizeConfig,aclrtStream stream)
- Python Function
1ret = acl.media.dvpp_vpc_batch_crop_resize_async(dvpp_channel_desc, src_batch_pic_descs, roi_nums_list, dst_batch_pic_descs, crop_area_list, resize_config, stream)
Parameter Description
Parameter |
Description |
|---|---|
dvpp_channel_desc |
Int, pointer address of the channel description. It must be the same as the dvpp_channel_desc argument passed to the acl.media.dvpp_create_channel call. |
src_batch_pic_descs |
Int, pointer address of the description of batch input images.
|
roi_nums_list |
List, list of number of cropped images, up to 256. The value of roi_nums_list is less than or equal to 256, which is the same as the value of batch_size in dst_batch_pic_descs. (roi_nums_list[0] + ... + roi_nums_list[size - 1] <= 256) |
dst_batch_pic_descs |
Int, pointer address of the description of batch output images.
|
crop_area_list |
List, list of the position of the cropping area. Call acl.media.dvpp_create_roi_config to create an ROI configuration. |
resize_config |
Int, pointer address of the image resizing configuration data. Call acl.media.dvpp_create_resize_config to create an image resizing configuration in advance. |
stream |
Int, stream object. |
Return Value Description
Return Value |
Description |
|---|---|
dst_batch_pic_descs |
Int, description of the output images. |
ret |
Int, error code: 0 on success; else, failure. |
Restrictions
Version |
Restriction |
|---|---|
|
|
|
|
|