How to view the pixel intensity of an image in Matlab by moving the mouse over the image?
I used:
imshow(imread('image.jpg'));
But there is no way to view the pixel intensities of each pixel in the image.
For instance,
In MS-paint, while moving the mouse pointer over the image we can see the location of the pixel such as (20, 117) at the status bar.
But I need to see the pixel intensity.
Is there any other option to view. Or do I need a code to view it?
source share