How to draw a white border around an image(or a group of images in a folder)
    4 次查看(过去 30 天)
  
       显示 更早的评论
    
I have an image :-

Now i want to draw a white border around the image,such that i get this:-

How can i do this.Please help.
0 个评论
回答(1 个)
  Image Analyst
      
      
 2017-4-1
        Use padarray():
padsize = 1;
padvalue = 255; % or 1 if image is single, double, or logical.
paddedImage = padarray(originalImage, padsize, padval);
3 个评论
  Image Analyst
      
      
 2017-4-1
				Then just write it in yourself
grayImage(:, 1) = 255; % Make left column white.
grayImage(:, end) = 255; % Make right column white.
grayImage(1, :) = 255; % Make top row white.
grayImage(end, :) = 255; % Make  bottom row white.
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


