Gaussian pyramid is a sequence of images blurred using the Gaussian kernel and downsampled:
In[1]:=
pyr=ImagePyramid
,"Gaussian"
Out[1]=
ImagePyramid
Type:GaussianLevels:8
Dimensions:{200,167}↔{2,1}
View all images:
In[2]:=
pyr[All]
Out[2]=
,
,
,
,
,
,
,
Laplacian pyramid is similar to the Gaussian pyramid, but saves the difference between original and blurred images at each level except for the smallest image. Saving the original at the last level allows for reconstruction at higher resolutions:
In[3]:=
pyr=ImagePyramid
,"Laplacian"
Out[3]=
ImagePyramid
Type:LaplacianLevels:8
Dimensions:{200,167}↔{2,1}
View all image levels, adjusting the images to see the details: