Altering intensity levels within an image
    1 visualización (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I would like to know with a black and white image of bit depth 8 (0-255 tones), how could I divide this range of 0-255 into two or more range for the purpose of decreasing the intensity levels of an image in Matlab? For instance, if a pixel has the intensity 192, how could I possibly bring it down to 2 by dividing the range of 0-255?
0 comentarios
Respuestas (2)
  Image Analyst
      
      
 el 8 de Feb. de 2013
        Simply divide by 2:
yourImage = uint8(yourImage / 2);
I have no idea what you are thinking with respect to having two or more ranges. You have only one range 0-255 and images can take any value in that range.
0 comentarios
  Youssef  Khmou
      
 el 8 de Feb. de 2013
        hi, you can use the function :
 J = imadjust(I,[low_in; high_in],[low_out; high_out],gamma)
for an example see :
 doc imadjust
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!