Resize - Resizes image in any size

Calling Sequence

	img = Resize(im,Height,Width);

Parameters

	im: Input matrice.  
	Height:rows of the ouput matrice 
	Width:coloums of the ouput matrice 

Description

	resize an image in any size

Examples

	im = imread("lena.png");
	img=Resize(im,4);