Pythonを使用して顔認識用のコードを作成しようとしています。これで、すべてのデータベース イメージを 1 つの 2 次元配列に配置して、それらに主成分分析 (PCA) を適用できるようになりました。matplotlib に PCA というクラスを見つけたのですが、顔認識にどう使うか迷っています。
上記のクラスの説明は次のとおりです。
class matplotlib.mlab.PCA(a)
compute the SVD of a and store data for PCA. Use project to project the data onto a reduced set of dimensions
Inputs:
a: a numobservations x numdims array
Attrs:
a a centered unit sigma version of input a
numrows, numcols: the dimensions of a
mu : a numdims array of means of a
sigma : a numdims array of atandard deviation of a
fracs : the proportion of variance of each of the principal components
Wt : the weight vector for projecting a numdims point or array into PCA space
Y : a projected into PCA space
The factor loadings are in the Wt factor, ie the factor loadings for the 1st principal component are given by Wt[0]