What is: Laplacian Pyramid?
Year | 1983 |
Data Source | CC BY-SA - https://paperswithcode.com |
A Laplacian Pyramid is a linear invertible image representation consisting of a set of band-pass images spaced an octave apart, plus a low-frequency residual. Formally, let be a downsampling operation that blurs and decimates a image so that is a new image of size . Also, let be an upsampling operator which smooths and expands to be twice the size, so is a new image of size . We first build a Gaussian pyramid , where and is repeated application of to . is the number of levels in the pyramid selected so that the final level has a minimal spatial extent ( pixels).
The coefficients at each level of the Laplacian pyramid are constructed by taking the difference between adjacent levels in the Gaussian pyramid, upsampling the smaller one with so that the sizes are compatible:
Intuitively, each level captures the image structure present at a particular scale. The final level of the Laplacian pyramid is not a difference image, but a low-frequency residual equal to the final Gaussian pyramid level, i.e. . Reconstruction from a Laplacian pyramid coefficients is performed using the backward recurrence:
which is started with and the reconstructed image being . In other words, starting at the coarsest level, we repeatedly upsample and add the difference image h at the next finer level until we return to the full-resolution image. Source: LAPGAN
Image : Design of FIR Filters for Fast Multiscale Directional Filter Banks