Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RV110X/include/
H A Dim2d.hpp132 #undef imrotate
133 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int…
H A Dim2d.h323 #define imrotate(src, dst, rotation, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/samples/transform_demo/src/
H A Drga_transform_rotate_demo.cpp106 ret = imrotate(src_img, dst_img, IM_HAL_TRANSFORM_ROT_90); in main()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/
H A Dim2d_single.h147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int…
669 #define imrotate(src, dst, rotation, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/
H A Dim2d_single.h147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int…
669 #define imrotate(src, dst, rotation, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/
H A Dim2d_single.h147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int…
669 #define imrotate(src, dst, rotation, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/im2d_api/
H A Dim2d_single.h147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int…
669 #define imrotate(src, dst, rotation, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/docs/
H A DRockchip_Developer_Guide_RGA_CN.md755 - **imrotate**: 调用RGA实现快速图像旋转操作。
1280 #### imrotate subsubsection
1283 IM_STATUS imrotate(const rga_buffer_t src,
1314 >通过job_handle向指定的任务中添加图像旋转操作,用法和imrotate一致。
3220 > 根据main()传参(90/180/270)决定旋转角度,并将传参转化为IM_USAGE枚举值,与存储src、dst图像数据的rga_buffer_t结构体一同传入imrotate()。
3226 /*将标识旋转角度的IM_USAGE枚举值与rga_buffer_t格式的结构体src、dst一同传入imrotate()*/
3227 STATUS = imrotate(src, dst, ROTATE);
H A DRockchip_Developer_Guide_RGA_EN.md748 - **imrotate**: Call RGA for fast image rotation.
1274 #### imrotate subsubsection
1277 IM_STATUS imrotate(const rga_buffer_t src,
1308 …ion to the specified job through job_handle. The configuration parameters are the same as imrotate.
2988 …gether with the rga_buffer_t structure that stores src and dst image data is passed to imrotate().
2994 …at identifies the rotation degrees and src and dst of rga_buffer_t structure format to imrotate()*/
2995 STATUS = imrotate(src, dst, ROTATE);
/OK3568_Linux_fs/external/linux-rga/samples/im2d_api_demo/
H A DrgaImDemo.cpp553 STATUS = imrotate(src, dst, ROTATE); in main()
/OK3568_Linux_fs/external/linux-rga/im2d_api/src/
H A Dim2d.cpp981 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync, int *re… in imrotate() function
1973 return imrotate(src, dst, rotation, sync, NULL); in imrotate_t()