OpenVx immediate code and Graphs not giving similar results
问题 I have converted the following OpenVx Sobel immediate code to Graph based . But the results done match. Immediate code works fine, it gives proper result. Whereas Graph code takes "longer" than the immediate code for a single image and produces wrong results too. So is my conversion correct ? Immediate Code : /* Intermediate images. */ vx_image dx = vxCreateImage(context, width, height, VX_DF_IMAGE_S16); vx_image dy = vxCreateImage(context, width, height, VX_DF_IMAGE_S16); vx_image mag =