PROCESSOR-SDK-J784S4: how to change the node's input parameter while graph run

Part Number: PROCESSOR-SDK-J784S4

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;

mScaleNode = tivxVpacMscScaleNode(mGraph, inputImage, outputImage, NULL, NULL, NULL, NULL);
vxVerifyGraph(mGraph);
how can I change the inputImage1 to inputImage2 during after vxVerifyGraph(mGraph) ?