1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef AVUTIL_PCA_H
- #define AVUTIL_PCA_H
- struct PCA *ff_pca_init(int n);
- void ff_pca_free(struct PCA *pca);
- void ff_pca_add(struct PCA *pca, const double *v);
- int ff_pca(struct PCA *pca, double *eigenvector, double *eigenvalue);
- #endif
|