压缩 Resources

Showing items tagged with "压缩"

This method compresses images through matrix singular value decomposition by first dividing the image into blocks, computing inner products of corresponding pixels within each block to obtain correlation matrix A, performing SVD on A, selecting n (n<N) dominant eigenvectors corresponding to larger eigenvalues, and using inner products between these vectors and image blocks for compression and reconstruction.

MATLAB 211 views Tagged

Wavelet Transform applications in image processing include: image format conversion between different types, 2D wavelet denoising, 2D wavelet image compression, wavelet analysis for noisy image denoising, 2D wavelet smoothing using median filtering, wavelet-based image enhancement, and wavelet analysis for image fusion of two distinct images. Implementation typically involves MATLAB's Wavelet Toolbox functions like wavedec2 for decomposition and waverec2 for reconstruction.

MATLAB 202 views Tagged

Different approaches for Synthetic Aperture Radar image processing, including speckle noise removal algorithms, image segmentation techniques, compression methods, and denoising processes. Provides implementation insights and algorithm explanations for technical reference.

MATLAB 174 views Tagged

For an input two-dimensional grayscale image, this process first applies the lifting Haar wavelet transform, then compresses the wavelet coefficients using the classic EZW algorithm, and finally reconstructs the original image through inverse transformation. The implementation involves key steps including wavelet decomposition, coefficient quantization, and hierarchical encoding for efficient compression.

MATLAB 191 views Tagged