Tagged Questions
The eigenvectors of a square matrix are the non-zero vectors that, after being multiplied by the matrix, remain parallel to the original vector
11
votes
3answers
4k views
Eigenvector computation using OpenCV
I have this matrix A, representing similarities of pixel intensities of an image. For example: Consider a 10 x 10 image. Matrix A in this case would be of dimension 100 x 100, and element A(i,j) would ...
8
votes
5answers
3k views
Singular Value Decomposition (SVD) in PHP
I would like to implement Singular Value Decomposition (SVD) in PHP. I know that there are several external libraries which could do this for me. But I have two questions concerning PHP, though:
1) Do ...
6
votes
5answers
239 views
What is the fastest way to calculate first two principal components in R?
I am using princomp in R to perform PCA. My data matrix is huge (10K x 10K with each value up to 4 decimal points). It takes ~3.5 hours and ~6.5 GB of Physical memory on a Xeon 2.27 GHz processor.
...
5
votes
3answers
661 views
Eigenfaces algorithm
I am programming a face recognition program using OpenCV.
When generating the eigenfaces:
do I need to use a big database of unknown faces ?
do I need to use only photos of the people I want my ...
4
votes
2answers
267 views
Issue with computing eigenvalues using mathematica
Basically I'm trying to find the eigenvalues for matrix, and it takes about 12 hours. When it finishes, it says it couldn't find all the eigenvectors (actually barely any), and I'm skeptical about the ...
4
votes
1answer
159 views
Any free ebooks or references on eigenvectors used in image processing?
I've been using wikipedia and random google searches to find information on eigenvectors, principal component analysis etc. and their application to image processing such as text-detection, eigenfaces ...
4
votes
3answers
2k views
Eigenvalues in MATLAB
In MATLAB when I run the command [V,D] = eig(a) for a symmetric matrix the largest eigenvalue (and its associated vector) is located in last column. However, when I run it with a non-symmetric matrix ...
3
votes
2answers
174 views
What are Eigenfaces generated from?
I'm working with eigenfaces for a facial recognition program I am writing. I have a couple questions about how eigenfaces are actually generated:
Are they generated from a lot of pictures of ...
3
votes
1answer
689 views
How to improve accuracy rate on Eigenface Algorithm
I use EmguCV library(openCV wrapper) on C# to implemented face detection and facial recognition using Eigenface algorithm
I found many mistakes of accuracy rate such as minimum distance is not a same ...
3
votes
4answers
487 views
Sorting eigenvectors by their eigenvalues (associated sorting)
I have an unsorted vector of eigenvalues and a related matrix of eigenvectors. I'd like to sort the columns of the matrix with respect to the sorted set of eigenvalues. (e.g., if eigenvalue[3] moves ...
2
votes
3answers
52 views
Obtain null space or single dimensional space which is its best approximation efficiently
I have been doing this using an svd computation
[U, S, V] = svd(A)
wherein I use the last column of A as my null space approximation. Since A gets really large, I realized that this is slowing ...
2
votes
2answers
414 views
What is the difference between 'eig' and 'eigs'?
I've searched a lot for this but I can't find any answer about how the two methods 'eig' and 'eigs' differ. What is the difference between the eigenvalues and eigenvectors received from them?
2
votes
1answer
193 views
f seems to be always positive in the MATLAB code, but in my Python code, f also gets negative values
How to convert the following MATLAB code to Python? Here is my solution, but it doesn't quite produce the same results. For example, f seems to be always positive in the MATLAB code, but in my Python ...
2
votes
2answers
674 views
Calculating EigenVectors in C# using Advanced Matrix Library in C#. NET
Ok guys, I am using the following library: http://www.codeproject.com/KB/recipes/AdvancedMatrixLibrary.aspx
And I wish to calculate the eigenvectors of certain matrices I have. I do not know how to ...
2
votes
3answers
823 views
Can I use Lapack for calculating the eigenvalues and eigenvectors of large sparse matrices?
If I had a square matrix that is 1,000 by 1,000 could Lapack calculate the eigenvectors and eigenvalues for this matrix? And if it can how long would it take? Also what about for a 10,000 by 10,000 ...
2
votes
3answers
1k views
Java package for eigenvector/eigenvalues computation?
which java package do you recommend for computing eigenvectors/eigenvalues? I know about JMathTools and JAMA; do you have some pro/cons for these packages? Other suggestions?
2
votes
1answer
549 views
Eigenvalues and Eigenvectors Computation in Intel Math Kernel
Does any know what is the algorithm used for eigenvalues and eigenvectors computation in Intel Math Kernel library? From the link I can find is that it seems to use pdsyev algorithm, which uses QR ...
2
votes
3answers
539 views
Given a set of points, how do I approximate the major axis of its shape?
Given a "shape" drawn by the user, I would like to "normalize" it so they all have similar size and orientation. What we have is a set of points. I can approximate the size using bounding box or ...
1
vote
2answers
53 views
Compute eigenvectors of image in python
I'm trying to fit a 2D Gaussian to an image. Noise is very low, so my attempt was to rotate the image such that the two principal axes do not co-vary, figure out the maximum and just compute the ...
1
vote
2answers
156 views
Generalized Eigenvalue in Mathematica
I am trying to solve a generalized eigenvalue problem with Mathematica. I want to find the eigenvalues and eigenvectors of the matrix A with respect to B. But when I use Eigensystem I receive the ...
1
vote
1answer
126 views
Fortran 90: DSYEV and associating eigenvalues and eigenvectors
I am very new to programming and fortran in particular. I am using the LAPACK (Linear Algebra Package) software package for Fortran to find the eigenvalues and eigenvectors of a large symmetrical real ...
1
vote
2answers
106 views
Solving linear equations during inverse iteration
I am using OpenCL to calculate the eigenvectors of a matrix. AMD has an example of eigenvalue calculation so I decided to use inverse iteration to get the eigenvectors.
I was following the algorithm ...
1
vote
2answers
134 views
Generalized eigenvalue problem
I'm trying to convert a generalized eigenvalue problem into a normal eigenvalue calculation.
I have this code:
[V,D,flag] = eigs(A, T);
Now I convert it into:
A1 = inv(T)*A;
[V1,D1,flag1] = ...
1
vote
3answers
301 views
Sort eigenvalue matrix with eigenvector matrix
I have N eigenvalues in column vector form.
Thus there are N eigenvectors corresponding to these eigenvalues, forming an eigenvector matrix.
Now, the problem I am working on requires me to sort the ...
1
vote
2answers
123 views
Symbolic Eigenvalues Matlab Error
I'm trying to find the eigenvectors of a symbolic 3x3 rotation matrix in MATLAB, it appears to work for some inputs but not all, for example:
A =
[ cos(q), -sin(q), 0]
[ sin(q), cos(q), 0]
[ 0, 0, 1]
...
1
vote
2answers
388 views
Python eigenvectors
eigenvalues, eigenvectors = linalg.eig(K)
How can I print just eigenvectors of len(K). So if there is K, 2x2 matrix, I get 4 eigenvectors, how can I print just 2 of them if there is len(K)=2....
...
1
vote
2answers
363 views
How to calculate the eigenvector of a column stochastic matrix in C++
I have a column stochastic matrix A(n-by-n real, non-negative matrix) and want to solve the following equation in C++: Ax=x
I am assuming that I need to find out an eigenvector, x, where eigenvalue ...
1
vote
1answer
385 views
OpenCV CalcPca input data
I am trying to implement a face recognition training function with opencv, using "eigenfaces". I have the sample data, but I can't find any info on CalcPCA function arguments. All I know is that it ...
1
vote
3answers
457 views
Eigenvector (Spectral) Decomposition
I am trying to find a program in C code that will allow me to compute a eigenvalue (spectral) decomposition for a square matrix. I am specifically trying to find code where the highest eigenvalue (and ...
1
vote
1answer
569 views
Issue with Jama's Eigenvalue decomposition function
I am getting a wrong eigen-vector (also checked by running multiple times to be sure) when i am using matrix.eig(). The matrix is:
1.2290 1.2168 2.8760 2.6370 2.2949 2.6402
1.2168 0.9476 2.5179 ...
0
votes
0answers
9 views
Generalized eigenvalue for two matrices in OpenCV
Hello I am working on a project involving in face recognition for which I am using Linear Discriminant Analysis(LDA). LDA demands to find the generalized eigen vectors for the between class scatter ...
0
votes
1answer
15 views
PCA: mean center first or normalize first?
If I have a covariance matrix and I would like to perform PCA of a corresponding correlation matrix, should I mean-center the covariance matrix first and then standardize (dividing by std deviations) ...
0
votes
0answers
22 views
Log space equation
I came across this equation in an image processing paper for removing shadows.
In log space, p is orthogonal to U=1/√3 〖(1,1,1)〗^T, that is p lives on a plane orthogonal to U.
Can anybody help me ...
0
votes
1answer
142 views
How to use princomp () function in R when covariance matrix has zero's?
While using princomp() function in R, the following error is encountered : "covariance matrix is not non-negative definite".
I think, this is due to some values being zero (actually close to zero, ...
0
votes
1answer
102 views
eigenfaces are not showing correctly and are very dark
I need to show 1st 10 eigenfaces using PCA for a image feature vector matrix.
I am using following matlab code to create 1st eigenface but I am getting very dark and not so correct eigenfaces.
eFea ...
0
votes
1answer
43 views
intel MKL: what function used in MKL lib (only for C program) for solving Ax=lamda*Bx (eigen value)
guyz,
I am looking forward for your help....thanks in advance
Ax=lamda*Bx
now how to find the value of lamda using MKL ?`
0
votes
1answer
83 views
Ordering of eigenvectors when calculating eigenvectors using LAPACK's ssteqr
I am using LAPACK's ssteqr function to calculate eigenvalues/eigenvectors. The documentation for ssteqr says that the eigenvalues are sorted "in ascending order". Is it reasonable to assume that the ...
0
votes
1answer
82 views
problem in finding eigenvectors of a matrix in MATLAB
I have a symmetric matrix with the elements A=[8.8191,0,1.0261; 0,3,0; 1.0261,0,3.1809];
I used the eig(A) function in MATLAB , the eigenvalues and eigenvectors are given :
eigvect =
0.1736 ...
0
votes
0answers
218 views
matlab: eigs appears to give out inconsistent results
I'm trying to get the two smallest eigenvectors of a matrix:
[v,c]=eigs(lap,2,'sm');
The result v is "correct" ~66% of time. When I say correct I mean "looks right" in terms of the problem I am ...
0
votes
1answer
362 views
NumPy linalg.eig
I have this annoying problem and I haven't figured it out yet. I have a matrix and I want to find the eigenvectors, so I write:
val,vec = np.linalg.eig(mymatrix)
and then I got vec . My problem is ...
0
votes
1answer
322 views
Calculating eigenvectors/values of a 2x2 tensor
I'm implementing the system described within this paper, and I'm getting a little stuck. I only recently encountered tensors/eigenvalues etc so excuse me if this is a little simple!
Given a 2x2 ...
0
votes
1answer
442 views
How to calculate the eigenvector of a column stochastic matrix in C++
I have a column stochastic matrix A and want to solve the following equation in C++:
Ax=x
I am assuming that I need to find out an eigenvector x where eigenvalue is set to be 1(right?) but I ...
0
votes
2answers
608 views
Finding eigenvectors of covariance matrix to create 3D bounding sphere
I'm currently in the process of writing a function to find an "exact" bounding-sphere for a set of points in 3D space. I think I have a decent understanding of the process so far, but I've gotten ...
0
votes
0answers
453 views
Eigenvector (Spectral) Decomposition (w/ordered eigenvalues and eigenvectors) [closed]
Possible Duplicate:
Eigenvector (Spectral) Decomposition
I am trying to find a program in C code that will allow me to compute a eigenvalue (spectral) decomposition for a square matrix. I ...
0
votes
1answer
415 views
Eigenvector centrality
I am new to programming and I am trying to calculate the eigenvector centrality of an directed graph mapping onto a social network. These are large matrices. I know how to calculate eigenvectors and ...