小波变换 Resources

Showing items tagged with "小波变换"

Wavelet Transform-based Multiresolution Matching Algorithm: This algorithm leverages wavelet multiresolution properties to decompose both the target image and template image into Z layers while preserving only the LL low-frequency components. It employs normalized correlation as a similarity metric to perform coarse-to-fine correlation matching, where each subsequent layer uses matching results from the previous layer to conduct localized searches in higher-resolution spaces. This approach significantly reduces search space and decreases computational load for similarity calculations in each matching iteration. Implementation typically involves wavelet decomposition using functions like wavedec2() in MATLAB, with correlation computed through optimized matrix operations.

MATLAB 260 views Tagged

This paper introduces multi-focus image fusion techniques, starting with wavelet transform fusion algorithms. While wavelet transforms offer non-redundancy and minimal high-frequency loss for effective fusion, they suffer from shift-variance and edge information degradation during reconstruction due to external interference. To overcome these limitations, we propose a hybrid method integrating wavelet decomposition with Point Spread Function (PSF) modeling. The approach involves non-downsampled wavelet decomposition to maintain source image dimensions, superposition of multi-directional/multi-scale high-frequency components, and feature extraction for sharp/blur target identification. The fusion algorithm design incorporates strategic source image combination while bypassing inverse wavelet transforms, yielding superior results through optimized edge preservation and reconstruction stability.

MATLAB 213 views Tagged

The crucial aspect of wavelet transform lies in determining the appropriate decomposition level and identifying modulus maximum points within that specific level.

MATLAB 250 views Tagged

Wavelet-Based Image Compression - This MATLAB program implements wavelet transform for image compression with comparative display of original and compressed images. The code features clear structure with key functions like wavedec2 (2D wavelet decomposition) and waverec2 (reconstruction), making it ideal for beginners to study wavelet compression algorithms and their practical implementation.

MATLAB 222 views Tagged