필터 지우기
필터 지우기

is there a version of Principle Component Analysis for images?

조회 수: 2 (최근 30일)
Mohamed Moawed
Mohamed Moawed 2013년 4월 15일
hello everybody, i want to ask about Principle Component Analysis, a tool used for data analysis
is there a version for PCA that is used for analysis the images?
and i want a source code and some examples for that
thanks for your help

답변 (3개)

Sean de Wolski
Sean de Wolski 2013년 4월 15일
doc pca
and
edit pca
  댓글 수: 10
Sean de Wolski
Sean de Wolski 2013년 4월 15일
Essentially. You need to horizontally concatenate all of your images first.
Mohamed Moawed
Mohamed Moawed 2013년 4월 15일
i = imread ('pout.tif'); x = i( : ); y = princomp(x); x = im2double (x); y = princomp(x); imshow (y)
i get no output!!!
what is the wrong here

댓글을 달려면 로그인하십시오.


Adam Filion
Adam Filion 2013년 4월 15일
I don't know much PCA myself, but I know we have some built-in tools in Statistics and Wavelet toolboxes that may be of use:
There are also a number of entries on the File Exchange for PCA:

Image Analyst
Image Analyst 2013년 4월 15일
The most famous application of PCA to images is eigenfaces: http://en.wikipedia.org/wiki/Eigenface You can essentially construct any face image by a weighted sum of eigenface (PCA) images.
  댓글 수: 3
Image Analyst
Image Analyst 2013년 4월 16일
Sure, you could do it. Would that be useful to you? Why do you want PCA component images anyway?
Mohamed Moawed
Mohamed Moawed 2013년 4월 16일
i want it to Analyze some fMRI cross-sectional brain images to early diagnosis Alzahimar Disease

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by