How can i implement this code?

2 次查看(过去 30 天)
Tomas
Tomas 2012-10-17
Hi
I'm looking for a matlab code which estimates the two principal directions (axes) using principal components analysis (PCA)?? Then any an other algorithm can be applied to estimate the asymmetry of the region of image in terms of the two principal axis. I tried several times to implement it and I looked everywhere to no avail. Now I ask my question on this forum hoping to get the right answer. thanks

回答(3 个)

Sachin Ganjare
Sachin Ganjare 2012-10-17
  1 个评论
Tomas
Tomas 2012-10-17
thank you for this link. I visited it but since I'm a beginner in matlab I have not got to use these concepts to draw the axes of the region in the segmented image and estimate the asymmetry.

请先登录,再进行评论。


Tomas
Tomas 2012-10-17
编辑:Tomas 2012-10-18
I tried to do this code but i need your help please
I2=segmentation(I);
[n m] = size(I2);
AMean = mean(I2);
co=I2*I2'; % Compute the covariance matrix (co)
% Compute the eigen values and eigen vectors of the covariance matrix
[eigvector,eigvl]=eig(co);
eigvalue = diag(eigvl);
pc = eigvector * I2;
plot(pc(1,:),pc(2,:))
  2 个评论
Matt Kindig
Matt Kindig 2012-10-18
What is your question? What about this code doesn't work?
Tomas
Tomas 2012-10-18
Hi
I'm looking for a matlab code which estimates the two principal directions (axes) using principal components analysis (PCA)?? Then any an other algorithm can be applied to estimate the asymmetry of the region of interest of the segmented image in terms of the two principal axis. I tried to do this code but it doesn't work so i need your help.

请先登录,再进行评论。


Tomas
Tomas 2012-10-18
编辑:Tomas 2012-10-18
Hi, Can any one please correct this code
A=imread('aeroplane silhouette.png');
bw=~im2bw(A,0.5); %Threshold and invert
subplot(1,2,1), imshow(bw,[]);
[y,x]=find(bw>0.5); %Get coordinates of non zero pixels
centroid=mean([x y]); %Get (centroid) of data
hold on; plot(centroid(1),centroid(2),'rd'); %Plot shape centroid
C=cov([x y]); %Calculate covariance of coordinates
[U,S]=eig(C)
m=U(2,1)./U(1,1);
const=centroid(2)/m.*centroid(1);
xl=50:450; yl=m.*xl+const
subplot(1,2,2), imshow(bw,[]); h=line(xl,yl); %Display image and axes
set(h,'Color',[1 0 0],'LineWidth',2.0)
m2=U(2,2)./U(1,2);
const=centroid(2)/m2.*centroid(1);
x2=50:450; y2=m2.*x2+const
h=line(x2,y2);
set(h,'Color',[1 0 0], 'LineWidth',2.0)
you find the images here
  2 个评论
Matt Kindig
Matt Kindig 2012-10-18
Before asking us to correct the code, you should tell us what's wrong with the code. From the second image, it seems that the gray lines lie along what I would expect to be the principal components.
Tomas
Tomas 2012-10-18
These image explained what i should to do but this code didn't plot the two axes

请先登录,再进行评论。

类别

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