I have a set of (x,y) coordinates that I need to mark on a given image in a given color. Can someone help me in doing this. Thanks in advance.
    1 vue (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have a set of (x,y) coordinates that I need to mark on a given image in a given color. Can someone help me in doing this. Thanks in advance.
0 commentaires
Réponses (1)
  Pavithra Ashok Kumar
    
 le 22 Jan 2016
        I understand you want to add points to an existing image . You can do it in two ways.
2. Next method is to use "plot". You do not need any additional toolbox to achieve this.
>> image(magic(5))
>> hold on;
>> plot(1,2,'r.','MarkerSize',20);
1 commentaire
  Dima Lisin
    
 le 22 Jan 2016
				As of R2013a vision.MarkerInserter has been deprecated. Please use the insertMarker function instead.
Voir également
Catégories
				En savoir plus sur Computer Vision Toolbox dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


