Is it possible to get minimum and maximum correlation values after templating matching ? just like in opencv : res = cv.matchTemplate(image,template,cv.TM_CCORR)
min_val, max_val, min_loc, max_loc = cv.minMaxLoc(res)
As per VPI documentation : vpi.Image.minmaxloc() return locations , just wanted to know is there any ways to get minimum/maximum values?