Home
last modified time | relevance | path

Searched refs:imcomposite (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RV110X/include/
H A Dim2d.hpp223 #undef imcomposite
224 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in…
H A Dim2d.h550 #define imcomposite(srcA, srcB, dst, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/samples/alpha_demo/src/
H A Drga_alpha_3channel_demo.cpp114 ret = imcomposite(fg_img, bg_img, output_img, IM_ALPHA_BLEND_SRC_OVER | IM_ALPHA_BLEND_PRE_MUL); in main()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/
H A Dim2d_single.h212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in…
747 #define imcomposite(srcA, srcB, dst, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/
H A Dim2d_single.h212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in…
747 #define imcomposite(srcA, srcB, dst, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/
H A Dim2d_single.h212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in…
747 #define imcomposite(srcA, srcB, dst, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/im2d_api/
H A Dim2d_single.h212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in…
747 #define imcomposite(srcA, srcB, dst, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/docs/
H A DRockchip_Developer_Guide_RGA_CN.md761 - **imcomposite**: 调用RGA实现三通道快速图像合成操作。
1377 #### imblend/imcomposite
1390 IM_STATUS imcomposite(const rga_buffer_t fg_image,
1447 【注意】图像合成模式不支持YUV格式之间合成,imblend函数dst图像不支持YUV格式,imcomposite函数srcB图像不支持YUV格式。
1481 > 通过job_handle向指定的任务中添加A+B -> C模式的图像合成操作,用法和imcomposite一致,当没有配置混合模式时则默认设置为src-over模式。
1483 【注意】图像合成模式不支持YUV格式之间合成,imblend函数dst图像不支持YUV格式,imcomposite函数srcB图像不支持YUV格式。
H A DRockchip_Developer_Guide_RGA_EN.md754 - **imcomposite**: Call RGA for three-channel fast image composite.
1371 #### imblend/imcomposite
1384 IM_STATUS imcomposite(const rga_buffer_t srcA,
1441 …s not support in dst image of imblend , the YUV format is not support in srcB image of imcomposite.
1475 … to the specified job through job_handle. The configuration parameters are the same as imcomposite.
1477 …s not support in dst image of imblend , the YUV format is not support in srcB image of imcomposite.
H A DRockchip_FAQ_RGA_CN.md1083 …lend()** 接口实现,通常选择src over模式,将src通道的图像叠加在dst通道的图像上;如果输出结果为YUV格式,可以通过 **imcomposite()** 接口实现,通常选择ds…
H A DRockchip_FAQ_RGA_EN.md1072 … overlaid on the dst channel image. If the output is in YUV format, ** imcomposite ()** can be use…
/OK3568_Linux_fs/external/linux-rga/im2d_api/src/
H A Dim2d.cpp1033 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in… in imcomposite() function
1062 return imcomposite(src, pat, dst, mode, sync, release_fence_fd); in imblend()
2001 return imcomposite(srcA, srcB, dst, mode, sync, NULL); in imblend_t()