Intensity (luminance) calculation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Image Analyst
el 15 de Oct. de 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 comentarios
Image Analyst
el 19 de Oct. de 2015
OK, then the pixel value at row i, column j is img(i,j) since your image is named img instead of grayscaleImage.
Ver también
Categorías
Más información sobre Image Filtering and Enhancement en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!