I am a newbie in MATLAB and I have a set of bmp images which I need to convert into pixel gray-level values as feature vectors of image. Can anyone suggest me the way how I can do that? I need to use these pixel gray-level values as features and then perform operations like PCA/LDA. I tried imread() but it returns me a matrix.. I feel feature vector will be just one row vector.

Regards,

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

imread() is the correct way to do it. Then just convert from a matrix into a vector. For example:

>> X = randi(255, 10)

X =

   208    41   168   181   112    71   192   215    90    20
   231   248    10     9    98   174    66    65   212    14
    33   245   217    71   196   168   130   208   150   136
   233   124   239    12   203    42   179    63   141   199
   162   205   174    25    48    31   228   237   234   239
    25    37   194   210   125   128   245    90    73    34
    72   108   190   178   114   245   140    51   194   146
   140   234   101    81   165    87    36    65   193   120
   245   203   168   243   181   150    39   158    98     4
   247   245    44     9   193    58    66   121   145    86

>> X(:)

ans =

   208
   231
    33
   233
   162
    25
    72
   140
   245
   247
...

Then you can just stack your different observations together with [] and do PCA.

link|improve this answer
thanks for quick reply. So what would I do if imread () returns a 72x96x3 matrix, should I use rgb2gray()? and if yes then 72*96 is 6912 so each row feature vector will have 6912 column values is it ok? – rohit bhatnagar Oct 26 '11 at 18:47
Correct. PCA will eventually be limited by your available memory, but it should work with that many features. – John Colby Oct 26 '11 at 19:20
1  
BTW instead of just using all the raw pixel data, if you want to look into the computer vision field, there are LOTS of other interesting ways you can extract features from images. Good luck! – John Colby Oct 26 '11 at 19:37
can you give me some pointers on that? – rohit bhatnagar Oct 27 '11 at 5:26
This is far from my area of expertise, but, for example, check out this data set in the excellent UCI ML database: archive.ics.uci.edu/ml/datasets/Corel+Image+Features – John Colby Oct 27 '11 at 15:20
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.