How to copy one rgb image to another?
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Ashwathy Dev
 am 4 Feb. 2015
  
    
    
    
    
    Kommentiert: Ashwathy Dev
 am 4 Feb. 2015
            
How to copy the rgb image inside yellow rectangle to a blank rgb image? I know the coordinates of the rectangle.
0 Kommentare
Akzeptierte Antwort
  Azzi Abdelmalek
      
      
 am 4 Feb. 2015
        you can extract your image im
a=im(x0:x1,y0:y1,:)
3 Kommentare
  Guillaume
      
      
 am 4 Feb. 2015
				Assuming that x is the horizontal coordinate, and y is the vertical coordinate with (1,1) top left corner, then it should be:
 a = im(y0:y1, x0:x1, :); %matlab uses row/column coordinate system
Ashwathy, this is basic matrix manipulation. What don't you understand?
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

