How from uint8 to 0 and 1?
    3 views (last 30 days)
  
       Show older comments
    
I import the following image which is a [583x673x3] uint8 :

and i would like the convert the grey/black color to origianally black.How it can be ?
0 Comments
Accepted Answer
  Sean de Wolski
      
      
 on 6 Nov 2014
        Igray = rgb2gray(I);
BW = im2bw(Igray,graythresh(Igray));
imshow(BW)
2 Comments
More Answers (2)
  Chad Greene
      
      
 on 6 Nov 2014
        Tinker with this threshold value:
threshold = 250; 
A = imread('export_fig_out.png');
A(A>=threshold)=255;
A(A<threshold)=0;
imshow(A)
2 Comments
  Chad Greene
      
      
 on 6 Nov 2014
				Before adjusting the image, (if you have the image processing toolbox) try imhist(A) to see where values in A lie relative to the gray scale.
See Also
Categories
				Find more on Image Processing Toolbox in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



