MATLAB: I would like to know ‘the method to obtain intensity of an object in the image’. I required the output in terms of intensity values or contour plots. Suggest which image processing tool has to be used

brightnessimage analysisimage processingImage Processing Toolboximage segmentation

doubt in image processing

Best Answer

Just use regionprops(). First segment your image to get your binary image of your blobs. Then do
props = regionprops(binaryImage, grayImage, 'MeanIntensity');
allIntensities = [props.MeanIntensity]