JavaScript image processing: Image pyramid

Source: Internet
Author: User

Objective

In a previous article, we explained the edge gradient computing function, which we'll look at in the image pyramid.

Image pyramid?

Image pyramid is widely used in computer vision applications.

Image Pyramid is an image set, all the images in the set originate from the same original image, and are obtained by successive descending sampling of the original image.

--"Learning OpenCV"

The common image pyramid has the following two kinds:

Gauss Pyramid (Gaussian pyramid): Used to sample down

Laplace pyramid (Laplacian Pyramid): Used to reconstruct upper-layer images from the lower pyramid image

Gauss Pyramid

Like the pyramid, the Gaussian pyramid is gradually sampled from the underlying original graph, getting smaller and lower.

So how do you get the next layer of images?

First, and the Gaussian kernel convolution:

Then, delete all the even rows.

Visible, this next level of image is about 1/4 of the previous level.

So how does the upward transformation change?

First, expand the row of pictures to twice times the original, and then add the rows and columns with a 0 fill.

Finally, multiply the volume by 4 after the Gaussian kernel.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.