Pyrup operator through the smoothing, sampling and other processes will be up-sampled picture,
to generate the length and width of the original picture twice the size of the picture, commonly used in the construction of the image pyramid,
access to high-resolution original picture and other scenarios.
The implementation process of up-sampling is to expand the original image first, inserting zeros on the even rows and columns of the original image,
and then performing Gaussian smoothing on the image to finally obtain the target image.
The length and width conform to the following constraints:
dst.width=src.width∗2
dst.height=src.height∗2
The Gaussian filter kernel used in the Gaussian smoothing stage is as follows: