can I take pca analysis of columns extracted from pixel values of a converted to gray image?

조회 수: 3 (최근 30일)
starting columns and ending columns
I made a code that outputs the pixel values of the columns from an image.
meanpixelvalues(i) = meanpixelvalues(binaryImage(masks));
I then applied pca analysis to the pixel values and the pca code output 1:
coeff = pca(meanpixelvalues(i))
Results:
coeff =
1
but I don't think that's physically possible and i'm wondering what did i do wrong to get a value of 1 and what does the columns of an image mean?
Thank you.
  댓글 수: 4
Neo
Neo 2023년 1월 20일
StartingColumns =
Columns 1 through 7
1 435 869 1303 1737 2171 2605
Columns 8 through 13
3039 3473 3907 4341 4775 5209
endingColumns =
Columns 1 through 7
434 868 1302 1736 2170 2604 3038
Columns 8 through 12
3472 3906 4340 4774 5208

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

답변 (1개)

Image Analyst
Image Analyst 2023년 1월 20일
You can do it. I attach an example where I did it for an RGB image where each column was one of the color channels converted into a column vector. But if your variables (features) are individual channels of a gray scale image, like you said, it's difficult to interpret. Why do you want to do it if you don't know what the PCs would represent?
  댓글 수: 7
Neo
Neo 2023년 1월 20일
sorry I attached the wrong image. But I think my main question is how to extract pc from an image that can be plotted on a graph not from color channels.

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

카테고리

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