cv.buildPyramid - MATLAB File Help |
Constructs the Gaussian pyramid for an image
dst = cv.buildPyramid(src)
dst = cv.buildPyramid(src, 'OptionName',optionValue, ...)
Maxlevel+1
images of the same type as
src
. A cell array of images. dst{1}
will be the same as src
.
dst{2}
is the next pyramid layer, a smoothed and down-sized src
, and
so on.The function constructs a vector of images and builds the Gaussian pyramid
by recursively applying cv.pyrDown to the previously built pyramid layers,
starting from dst{1}==src
.