奇异值分解 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

Based on the fundamental principles and characteristics of Singular Value Decomposition (SVD), this article presents a method for image compression using SVD. The method is illustrated through simple examples demonstrating the basic compression process and workflow. Practical image processing implemented through MATLAB programming validates the effectiveness of the approach, with detailed explanations of key functions like svd() for matrix decomposition and imshow() for image visualization.

MATLAB 161 views Tagged

A new digital image watermarking algorithm is proposed that integrates Discrete Wavelet Transform (DWT) with Singular Value Decomposition (SVD). The algorithm performs wavelet decomposition on the original image, partitions the low-frequency subband obtained from decomposition, and applies SVD to each block. The largest singular value from each block is selected to embed Arnold-scrambled watermark information through quantization.

MATLAB 212 views Tagged