Altering intensity levels within an image
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
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
답변 (2개)
  Image Analyst
      
      
 2013년 2월 8일
        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
  Youssef  Khmou
      
 2013년 2월 8일
        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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


