Using Singular value decomposition for feature extraction from images

8 vues (au cours des 30 derniers jours)
Ron Herman
Ron Herman le 17 Avr 2020
Suppose I have a single subject who has 10 images under different conditions. I need to apply singular value decomposition on all 10 images for feature extraction. Then storing the common extracted feature from 10 images.
The purpose is to save space. Rather than saving all 10 images I would like to save common extracted in one place and use the common extracted feature for future face recognition of the same subject (person).
The 10 images have been attached.
  2 commentaires
Christine Tobler
Christine Tobler le 17 Avr 2020
Do you want to compute the singular value decomposition of each of these images and store those? Or compute a combined decomposition of all 10 images?
Ron Herman
Ron Herman le 17 Avr 2020
Modifié(e) : Ron Herman le 17 Avr 2020
SVD on each image for feature extraction.
I also want to know feature extraction using SVD

Connectez-vous pour commenter.

Réponses (2)

Christine Tobler
Christine Tobler le 17 Avr 2020
Image compression using SVD is a pretty common example (although not the most efficient way to compress an image), here are some relevant links:
For feature extraction, I don't know of a "standard" algorithm to do this using SVD. I found some papers searching for this topic, maybe one of these could be helpful:

Yee Mon
Yee Mon le 13 Mar 2024
% Load the image
image1 = imread('yme.jpg');
% Convert the image to grayscale if it's RGB
if size(image, 3) == 3
image = rgb2gray(image);
end
% Perform Singular Value Decomposition (SVD) on the image matrix
[U, S, V] = svd(double(image));
% Choose the number of singular values to keep (feature extraction)
num_features = 50;
U = U(:, 1:num_features);
S = S(1:num_features, 1:num_features);
V = V(:, 1:num_features);
% Reconstruct the image using the selected features
reconstructed_image = unit8(U * S * V');
% Display the original and reconstructed images by SVD features
subplot(1, 2, 1);
imshow(image1);
title('Original Image');
subplot(1, 2, 2);
imshow(reconstructed_image);
title('Reconstructed Feature Image with SVD');

Catégories

En savoir plus sur Eigenvalues dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by