How can i paint some pixels in grayscale image to non-gray colors?
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Tzvi
 le 11 Déc 2012
  
    
    
    
    
    Commenté : Walter Roberson
      
      
 le 7 Avr 2018
            I have a Grayscale images I want to paint some pixels pixels that i choose in red for example. How can i do it?
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 11 Déc 2012
        You cannot paint some pixels a non-gray color but have it remain a grayscale image.
You can overlay a different image on top that is transparent except where you want the colored pixels, and have the color in that second image. The color would have to be specified as RGB.
You can convert the image from grayscale to RGB and then replace pixels in the new image. For example,
RGBimage = cat(3, GrayImage, GrayImage, GrayImage);
RGBimage(1:10, 1:10, 1) = 255;
RGBimage(1:10, 1:10, 2:3) = 0;
and then display RGBimage
2 commentaires
  David
      
 le 5 Avr 2018
				I am using MRI data and need to highlight portions. Using cat completely distorted the image. Do you have another suggestion in how to fix this?
  Walter Roberson
      
      
 le 7 Avr 2018
				I speculate that your MRI data is grayscale 3D, with the third dimension representing slices.
How are you displaying the data?
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Medical Physics dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


