I have integrated my grayscale image using Imgproc.integral as follows:
Mat graySum = new Mat(); Imgproc.integral(grayImg, graySum, -1);
Is there any way to show the resulted output array: graySum as an integrated intensity profile where y: intensity(gray value) and x: distance(pixels)?
Any help is highly appreciated, EleDiam