I want to resize images, but it should keep the height/width ratio when doing the resizing. What I do is, first I check whether which side (width or height) is the long. If the width is long, I'll give 150 to the width's size and resize the height without affecting to the shape of the image and vise versa. I am talking this resized image for a edge detection algorithm and output binary image is sent to the neural network which requires constant number of inputs. In this case, one side of (width or height) the image is 150 and other side is less than 150(vary from image to image). But I want to add black color to the other side(less than 150) until its size is 150. So, I can sent 150*150 inputs to the neural network. Question is How can I add black color to the other side(less than 150) until its size is 150?

Thanks in advance

link|improve this question

60% accept rate
1  
What is the question? – Charles Brunet Apr 28 '11 at 5:05
@Charles Brunet Question is How can I add black color to the other side(less than 150) until its size is 150? – Nadeeshani Jayathilake Apr 28 '11 at 5:08
@gnovice thanks – Nadeeshani Jayathilake Apr 29 '11 at 4:46
feedback

2 Answers

Creates an matrix of zeros. Calculate the position of the top-left pixel. Then copy your image to that matrix slicing from the top-left pixel.

link|improve this answer
If u don't mind, can you please mention the matlab functions to copy image to another slicing from top-left pixel? – Nadeeshani Jayathilake Apr 28 '11 at 6:06
feedback

http://www.mathworks.com/help/toolbox/images/ref/imresize.html http://www.mathworks.com/help/toolbox/images/ref/padarray.html

newim = imresize(im, 150 / max(size(im));
paddedim = padarray(newim, size(newim) - 150, 0);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.