Intensity (luminance) calculation
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Image Analyst
le 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 commentaires
Image Analyst
le 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.
Voir également
Catégories
En savoir plus sur Image Filtering and Enhancement dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!