Image pyramid reduction and expansion
imout = imresize(imin, direction)
impyramid
computes a Gaussian pyramid reduction of imin by one level. If direction is 'expand', impyramid
computes a Gaussian pyramid expansion of imin by one level. Gaussian 5x5 filter is currently supported.imout=impyramid(imin,direction)
computes a Gaussian pyramid reduction or expasion of imin by one level. Direction can be 'reduce' or 'expand'. If imin is mxn and direction is 'reduce', then the size of imout is ceil(m/2)xceil(n/2). If direction is 'expand', then the size of imout is (2xm)x(2xn).
http://sivp.sf.net