Tool/software:
when I create a node which input type is vx_image, and output type is also vx_image, is there any API to change the input parameter to other vx_image object while I run grpah
for example:
vx_image inputImage1 = vxCreateImage(mContext,width,height,VX_DF_IMAGE_NV12);
vx_image inputImage2 = vxCreateImage(mContext,width,height,VX_DF_IMAGE_NV12);
fill inputImage1 and inputImage2 with different picture data;