Commit a9955147 authored by michael's avatar michael

Make diego happy before he notices.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14810 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3406faf0
...@@ -23,7 +23,12 @@ ...@@ -23,7 +23,12 @@
* Principal component analysis * Principal component analysis
*/ */
#ifndef FFMPEG_PCA_H
#define FFMPEG_PCA_H
struct PCA *ff_pca_init(int n); struct PCA *ff_pca_init(int n);
void ff_pca_free(struct PCA *pca); void ff_pca_free(struct PCA *pca);
void ff_pca_add(struct PCA *pca, double *v); void ff_pca_add(struct PCA *pca, double *v);
int ff_pca(struct PCA *pca, double *eigenvector, double *eigenvalue); int ff_pca(struct PCA *pca, double *eigenvector, double *eigenvalue);
#endif /* FFMPEG_PCA_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment