Question
The syntax given for singular value decomposition is svd(x). I tried it with my image, but it didn't work. Can you tell me how to work with svd for images please?
Related Questions
Expert Answer
Neeta Dsouza
PhD Expert
Answered Aug 14, 2026
Applying Singular Value Decomposition (SVD) to an image involves treating the image as a matrix and decomposing it into three matrices. Here's how you can do it step by step:
Steps to Apply SVD to an Image:
-
Understand the Image as a Matrix:
- Digital images are represented as matrices where each entry corresponds to the intensity (grayscale images) or color channel values (RGB images).
- For a grayscale image, the matrix has dimensions
(height x width). - For a color image, each channel (Red, Green, Blue) is treated as a separate 2D matrix.
-
Convert the Image to a Matrix:
- Use a library like NumPy in Python to read and represent the image as a matrix.
-
Perform SVD:
- Decompose the image matrix AA into three matrices U,Σ,U, \Sigma, and VTV^T, such that: A=U⋅Σ⋅VTA = U \cdot \Sigma \cdot V^T Here:
- UU: Orthogonal matrix (contains left singular vectors).
- Σ\Sigma: Diagonal matrix (contains singular values).
- VTV^T: Transposed orthogonal matrix (contains right singular vectors).
- Decompose the image matrix AA into three matrices U,Σ,U, \Sigma, and VTV^T, such that: A=U⋅Σ⋅VTA = U \cdot \Sigma \cdot V^T Here:
-
Reconstruct or Compress the Image:
- By keeping only a subset of the largest singular values (and their corresponding singular vectors), you can reconstruct a compressed version of the image.
- This is done by truncating Σ\Sigma to keep only kk largest singular values.
Example Code for Grayscale Image
Here's an example using Python with NumPy and Matplotlib:
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image
# Load the grayscale image
image = Image.open('your_image.jpg').convert('L') # Convert to grayscale
image_matrix = np.array(image)
# Perform SVD
U, S, Vt = np.linalg.svd(image_matrix, full_matrices=False)
# Reconstruct the image using the first k singular values
k = 50 # Number of singular values to keep
S_k = np.diag(S[:k]) # Truncated diagonal matrix
U_k = U[:, :k] # Truncated U matrix
Vt_k = Vt[:k, :] # Truncated V^T matrix
compressed_image = np.dot(U_k, np.dot(S_k, Vt_k))
# Plot the original and compressed images
plt.figure(figsize=(10, 5))
plt.subplot(1, 2, 1)
plt.title("Original Image")
plt.imshow(image_matrix, cmap='gray')
plt.axis('off')
plt.subplot(1, 2, 2)
plt.title(f"Compressed Image (k={k})")
plt.imshow(compressed_image, cmap='gray')
plt.axis('off')
plt.show()
For RGB Images
If the image is in color, you need to apply SVD to each channel separately:
# Load the RGB image
image = Image.open('your_image.jpg')
image_array = np.array(image)
# Initialize an empty array for the compressed image
compressed_image = np.zeros_like(image_array)
# Perform SVD on each channel
for i in range(3): # Loop through R, G, B channels
U, S, Vt = np.linalg.svd(image_array[:, :, i], full_matrices=False)
S_k = np.diag(S[:k])
U_k = U[:, :k]
Vt_k = Vt[:k, :]
compressed_image[:, :, i] = np.dot(U_k, np.dot(S_k, Vt_k))
# Ensure values are in the valid range [0, 255]
compressed_image = np.clip(compressed_image, 0, 255).astype('uint8')
# Display the compressed image
plt.imshow(compressed_image)
plt.title(f"Compressed RGB Image (k={k})")
plt.axis('off')
plt.show()
Key Notes:
- Library: Use
numpy.linalg.svd()for the decomposition. - Compression: The value of kk controls the level of compression—smaller kk means higher compression but more loss of detail.
- Grayscale vs. RGB: Grayscale images involve one matrix, while RGB images involve three matrices (one for each color channel).
Let me know if you have additional questions! ????
Have a different question? Ask here