Nvxcu_pitch_linear_image_t to vx_image conversion

hello,

I would like to make conversion from nvxcu_pitch_linear_image_t to vx_image. I checked the relates froum topics yet I cannot find an answer. Is there a function to make this conversion or some sort of conversion method?

thanks

Hi,

Please wraps the data buffer of nvxcu_pitch_linear_image_t with vxCreateImageFromHandle.
You can find some information in our VisionWorks document:
https://developer.nvidia.com/embedded/dlc/visionworks-1-6-documentation-for-l4t-27-1

⮚ Khronos OpenVX 1.1 API
⮚ OpenVX API Modules
⮚ Basic Features
⮚ vx_map_flag_e
⮚ vxCreateImageFromHandle

vx_image VX_API_CALL vxCreateImageFromHandle ( vx_context  context,
                                               vx_df_image color,
                                               const vx_imagepatch_addressing_t addrs[],
                                               void *const  ptrs[],
                                               vx_enum  memory_type 
                                             )		
...

Thanks.