bmcv_image_fill_rectangle

该接口用于在图像上填充一个或者多个矩形。

处理器型号支持:

该接口支持BM1684/BM1684X。

接口形式:
bm_status_t bmcv_image_fill_rectangle(
        bm_handle_t   handle,
        bm_image      image,
        int           rect_num,
        bmcv_rect_t * rects,
        unsigned char r,
        unsigned char g,
        unsigned char b)

传入参数说明:

  • bm_handle_t handle

    输入参数。设备环境句柄,通过调用 bm_dev_request 获取。

  • bm_image image

    输入参数。需要在其上填充矩形的 bm_image 对象。

  • int rect_num

    输入参数。需填充矩形的数量,指 rects 指针中所包含的 bmcv_rect_t 对象个数。

  • bmcv_rect_t* rect

    输入参数。矩形对象指针,包含矩形起始点和宽高。具体内容参考下面的数据类型说明。

  • unsigned char r

    输入参数。矩形填充颜色的r分量。

  • unsigned char g

    输入参数。矩形填充颜色的g分量。

  • unsigned char b

    输入参数。矩形填充颜色的b分量。

返回值说明:

  • BM_SUCCESS: 成功

  • 其他:失败

数据类型说明:

typedef struct bmcv_rect {
    int start_x;
    int start_y;
    int crop_w;
    int crop_h;
} bmcv_rect_t;
  • start_x 描述了 crop 图像在原图中所在的起始横坐标。自左而右从 0 开始,取值范围 [0, width)。

  • start_y 描述了 crop 图像在原图中所在的起始纵坐标。自上而下从 0 开始,取值范围 [0, height)。

  • crop_w 描述的 crop 图像的宽度,也就是对应输出图像的宽度。

  • crop_h 描述的 crop 图像的高度,也就是对应输出图像的高度。

注意事项:

  1. bm1684 支持输入 bm_image 图像格式为

num

input image_format

1

FORMAT_NV12

2

FORMAT_NV21

3

FORMAT_NV16

4

FORMAT_NV61

5

FORMAT_YUV420P

6

RGB_PLANAR

7

RGB_PACKED

8

BGR_PLANAR

9

BGR_PACKED

bm1684x 支持输入 bm_image 图像格式为

num

input image_format

1

FORMAT_NV12

2

FORMAT_NV21

3

FORMAT_YUV420P

4

RGB_PLANAR

5

RGB_PACKED

6

BGR_PLANAR

7

BGR_PACKED

支持输入 bm_image 数据格式为

num

intput data_type

1

DATA_TYPE_EXT_1N_BYTE

如果不满足输入输出格式要求,则返回失败。

  1. 输入输出所有 bm_image 结构必须提前创建,否则返回失败。

  2. 如果rect_num为0,则自动返回成功。

  3. 所有输入矩形对象部分在image之外,则只会填充在image之内的部分,并返回成功。

代码示例

#include <iostream>
#include <vector>
#include "bmcv_api_ext.h"
#include "bmlib_utils.h"
#include "common.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include <memory>

 int main(int argc, char *argv[]) {
     bm_handle_t handle;
     bm_dev_request(&handle, 0);

     int image_h = 1080;
     int image_w = 1920;
     bm_image src;
     bm_image_create(handle, image_h, image_w, FORMAT_NV12,
             DATA_TYPE_EXT_1N_BYTE, &src);
     std::shared_ptr<u8*> y_ptr = std::make_shared<u8*>(
             new u8[image_h * image_w]);
     memset((void *)(*y_ptr.get()), 148, image_h * image_w);
     memset((void *)(*uv_ptr.get()), 158, image_h * image_w / 2);
     u8 *host_ptr[] = {*y_ptr.get(), *uv_ptr.get()};
     bm_image_copy_host_to_device(src, (void **)host_ptr);
     bmcv_rect_t rect;
     rect.start_x = 100;
     rect.start_y = 100;
     rect.crop_w = 200;
     rect.crop_h = 300;
     bmcv_image_fill_rectangle(handle, src, 1, &rect, 255, 0, 0);
     bm_image_destroy(src);
     bm_dev_free(handle);
     return 0;
 }