how PCA can be applied to an image to reduce its dimensionality with example?
显示 更早的评论
Dimensionality reduction
3 个评论
Ameerah Omar
2015-11-9
i run your code but it is not work with me this error in the picture in the file plz see it and tell me what is the wrong
SHEETAL AGRAWAL
2021-9-14
Can I use PCA for grey scale images
Image Analyst
2021-9-14
@SHEETAL AGRAWAL, perhaps. You obviously need at least two features. What would be your two features? Maybe gray level is one, but what is the other? Or do you just have two different features, like blob area and blob texture or brightness?
采纳的回答
更多回答(7 个)
Devan Marçal
2015-8-13
0 个投票
Hi,
in your example you used PCA in just one image. I have an image bank a total of ~ 800 images. If I make a loop (if, while, etc ..) using the PCA function for each image individually, will be using this command wrong or inefficiently?
Thanks a lot.
Devan
8 个评论
Image Analyst
2015-8-14
No, it should work fine.
Newman
2015-9-27
what if the image is binary??IN that case what changes will be on the code?
Image Analyst
2015-9-27
I don't understand why you'd want to use PCA on a binary image or a single gray level image. Why do you? What are you trying to do? What are the two features? With gray scale and binary images there's only one feature - the gray level - unless you add more images or color channels, so I don't see how PCA can be applied.
Anim Hossain
2018-4-6
hello. I'm new to the concept of PCA. I'm trying to develop something that can recognize color features from different images. Is it possible to do it with the help of PCA?
Image Analyst
2018-4-6
Yes it is. See attached demo.
Etworld
2019-4-3
Hello, it is weird but, in line 114 it gives inner dimension error.
transformedImagePixelList = listOfRGBValues * coeff;
For 'coloredChips' image example, size(listOfRGBValues)=202538x3
size(coeff)=202538x2
Why do you think is happening ?
Darshan Jain
2019-7-25
Hey @ImageAnalyst,
I checked out your script, I had a small question, How could I plot the colored image back in three plots (showing approximation by pca1, then pca1 and pca2 and then followed by pca1, pca2 and pca3).
I tried doing using the imfuse comand "imfuse(pca1,pca2)", the clarity improved well, but i'm not able to reproduce the same colors. (see the attached image)
I think this is because I need to normalize the data, and then un-normalize it back before plotting. (I'm not sure though)
Image Analyst
2019-7-25
Etworld, I just ran the colored chips image and it ran fine. Did you change my code at all?

Darshan: where did your colors come from? I don't understand what your "approximations" are supposed to be. But anyway, you can stitch images side by side if they are all RGB images to begin with:
wideImage = [rgbImage1, rgbImage2, rgbImage3];
Shaveta Arora
2016-1-30
0 个投票
Can I have the pca code used in this color image example
6 个评论
Image Analyst
2016-1-30
See my attached m-file.
Shaveta Arora
2016-1-31
thanks
Shaveta Arora
2016-1-31
Dear Analyst In the attachment pca_image.m, pls share the function pca(X); as I ma having error : Undefined function or method 'pca' for input arguments of type 'double'.
Image Analyst
2016-1-31
You must not have the Statistics and Machine Learning Toolbox.
Shaveta Arora
2016-1-31
Might possible. Pls share this pca function to save in my folder.
Image Analyst
2016-1-31
I can't. It would not be legal. You either have to buy the toolbox from the Mathworks, or implement it yourself from low level code.
Anitha Anbazhagan
2016-9-17
0 个投票
I have 200 ROIs from each of the 50 images. For each ROI, I have 96 feature vectors for four different frequency bands. It seems very high dimensional. How to apply PCA for this? PCA should be applied to data matrix. Do I have to apply for each image or each ROI?
1 个评论
Image Analyst
2016-9-17
It depends on if you want PCA components on each image individually, or the PCA components of the group as a whole.
Mina Kh
2016-12-11
0 个投票
Hi. I have multispectral( multi channel) data and I want to apply PCA to reduce the number of channel. Can u give me some hint?Which code i have to use?
Arathy Das
2016-12-20
0 个投票
How can i extract three texture features among the 22 using PCA?
1 个评论
Image Analyst
2016-12-20
I think you should start your own discussion with your own data or images. If you have 22 PCA columns, then just extract the 3 you want as usual.
pca3 = pca22(:, 1:3); % or whatever.
joynjo
2018-3-24
0 个投票
How to visualize the result of PCA image in pseudocolor?
1 个评论
Image Analyst
2018-3-24
imshow(PC1); % Display the first principal component image.
colormap(jet(256));
F M Anim Hossain
2018-4-6
0 个投票
I'm new to the concept of PCA. I'm trying to develop something that can recognize color features from different images. Is it possible to do it with the help of PCA?
类别
在 帮助中心 和 File Exchange 中查找有关 Dimensionality Reduction and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
