Intensity (luminance) calculation
1 view (last 30 days)
Show older comments
How can I calculate the intensity level of the ith pixel (or the luminance of the ith pixel) of an 1024*1024 grey level image
0 Comments
Answers (1)
Image Analyst
on 15 Oct 2015
Knowing the row and column, you can get its gray level:
grayLevel = grayscaleImage(row, column);
The total number of rows and columns does not enter into it - all you need to know is the location of the pixel.
5 Comments
Image Analyst
on 19 Oct 2015
OK, then the pixel value at row i, column j is img(i,j) since your image is named img instead of grayscaleImage.
See Also
Categories
Find more on Image Filtering and Enhancement in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!