4

I am trying to reduce the dimensions on an a set of images using Matlab Toolbox for Dimensionality Reduction. Problem is: I know very little about dimension reduction. So am trying each one by trial and error, passing the data set to the function. I have tried 6 so far, PCA was returning a matrix with a complex number. And the others was frozen matlab. What Image reduction methods is suitable for images?

cubearth
  • 1,153
  • 4
  • 15
  • 30

1 Answers1

3

It looks like you are trying to implement something like eigenfaces, so first of all take a look at the article. Normally you need to get eigenvectors either with PCA or with SVD. However, if you need really low resources use, take a look at Random Projection method.

ffriend
  • 27,562
  • 13
  • 91
  • 132
  • 1
    Here note, that SVD may be used as one possible implementation of PCA, but PCA has other implementations too and I don't know which on is used in Matlab toolbox. – ffriend May 07 '12 at 21:31