Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

plot integrated intensity profiles from image - java

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