showing the grayscale matrix
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    evangeline
 el 23 de En. de 2014
  
    
    
    
    
    Comentada: Image Analyst
      
      
 el 23 de En. de 2014
            I have a 2D matrix , and I was trying to display it as an image, but the problem is that in the output axes, for all the numbers except 0, I see white in result, and black for zero, I want to see all gray colors (in grayscale) from black to white, what can I do? this is the resault I see

0 comentarios
Respuesta aceptada
  Image Analyst
      
      
 el 23 de En. de 2014
        It's probably a type double, which needs to be in the range 0-1, not 0-255 that you probably have. You can autoscale with []. Try
imshow(your2Dmatrix, []);
2 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Image Processing Toolbox 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!