重构 Resources

Showing items tagged with "重构"

Implementation of three-level non-standard wavelet decomposition and reconstruction using two wavelet types: Haar wavelet and db9 wavelet. The program performs 3-level wavelet decomposition and reconstruction on images. Using a personal photograph as the subject, the process demonstrates either wavelet's decomposition and reconstruction procedure. For Haar wavelet, reconstruction images are stored in PNG format with thresholds 0, 5, 10, and 20, with results recorded in an "Image Test Table". For db9 wavelet, reconstruction uses thresholds 0, 5, and 10, storing PNG images and populating the test table.

MATLAB 260 views Tagged

Complete source code implementation for 1D Discrete Wavelet Transform (DWT) featuring decomposition and reconstruction using db6 wavelet. The implementation allows flexible customization of both mother wavelet and scaling function parameters. Includes comprehensive MATLAB tutorial with practical examples.

MATLAB 252 views Tagged

DCT Image Compression Algorithm workflow: 1. Image normalization 2. Display coefficient image 3. Image reconstruction and display 4. Error image visualization 5. Mean square error calculation for normalized images. Code implementation includes pixel value mapping, DCT/IDCT transformations, and quality assessment metrics.

MATLAB 254 views Tagged

Perform multi-level (≥3) 2D discrete wavelet transformation on images, reconstruct the transformed data, and calculate the Peak Signal-to-Noise Ratio (PSNR) of the reconstructed image. Implementation typically involves wavelet decomposition using functions like wavedec2(), reconstruction using waverec2(), and PSNR calculation through mean squared error computation.

MATLAB 194 views Tagged