Home
last modified time | relevance | path

Searched refs:imcrop (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RV110X/include/
H A Dim2d.hpp115 #undef imcrop
116 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *…
H A Dim2d.h291 #define imcrop(src, dst, rect, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/samples/crop_demo/src/
H A Drga_crop_demo.cpp113 ret = imcrop(src_img, dst_img, rect); in main()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/
H A Dim2d_single.h79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *…
611 #define imcrop(src, dst, rect, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/
H A Dim2d_single.h79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *…
611 #define imcrop(src, dst, rect, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/
H A Dim2d_single.h79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *…
611 #define imcrop(src, dst, rect, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/im2d_api/
H A Dim2d_single.h79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *…
611 #define imcrop(src, dst, rect, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/docs/
H A DRockchip_Developer_Guide_RGA_CN.md749 - **imcrop**: 调用RGA实现快速图像裁剪操作。
1122 #### imcrop subsubsection
1125 IM_STATUS imcrop(const rga_buffer_t src,
1155 > 通过job_handle向指定的任务中添加图像裁剪操作,用法和imcrop一致。
3182 > 将需要裁剪的大小在存储src矩形数据的im_rect结构体中赋值,并将存储src、dst图像数据的rga_buffer_t结构体传入imcrop()。
3191 /*将im_rect格式的结构体src_rect与rga_buffer_t格式的结构体src、dst传入imcrop()*/
3192 STATUS = imcrop(src, dst, src_rect);
H A DRockchip_Developer_Guide_RGA_EN.md742 - **imcrop**: Call RGA for fast image cropping.
1116 #### imcrop subsubsection
1119 IM_STATUS imcrop(const rga_buffer_t src,
1149 …ation to the specified job through job_handle. The configuration parameters are the same as imcrop.
2950 …angle data, and pass the rga_buffer_t structure that stores the src and dst image data to imcrop().
2959 /*pass src and dst of src_rect structure and rga_buffer_t structure format to imcrop()*/
2960 STATUS = imcrop(src, dst, src_rect);
/OK3568_Linux_fs/external/linux-rga/samples/im2d_api_demo/
H A DrgaImDemo.cpp526 STATUS = imcrop(src, dst, src_rect); in main()
/OK3568_Linux_fs/external/linux-rga/im2d_api/src/
H A Dim2d.cpp918 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync, int *rele… in imcrop() function
1969 return imcrop(src, dst, rect, sync, NULL); in imcrop_t()