how to put border on the image over top and bottom
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
i have sucessfully implemented the border on left and right but unable to do on top and bottom 
code that i have used for this program is 
a = imread('imagea.jpg');
b = imread('imageb.jpg');
close all;
[y,x,c] = size(a);
c = uint8(zeros(y,10,c));
d=[a,c,b];
c(:,:,1) = 255;
d=[c,a,c,b,c];
imshow(d);
Out put result of this is like that

now i want border on top and bottom, but no progress
0 Kommentare
Antworten (2)
  Bryan
      
 am 24 Nov. 2019
        could you not just do 
plot([min(xlim) max(xlim)],[max(ylim) max(ylim)], 'r-', 'linewidth', 2)
plot([min(xlim) max(xlim)],[min(ylim) min(ylim)], 'r-', 'linewidth', 2)
0 Kommentare
  Akira Agata
    
      
 am 26 Nov. 2019
        Assuming "imagea.jpg" and "imageb.jpg" have the same size, how about the following? 
a = imread('imagea.jpg');
b = imread('imageb.jpg');
sz = size(a);
Iab = [a,b];
figure
imshow(Iab)
hold on
rectangle(...
  'Position', [1 1 sz(2)-1 sz(1)-1],...
  'LineWidth',2,...
  'EdgeColor','r')
rectangle(...
  'Position',[sz(2) 1 sz(2)-1 sz(1)-1],...
  'LineWidth',2,...
  'EdgeColor','r')
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Modify Image Colors finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!