Commit ade2938a authored by michael's avatar michael

Add prototypes to header (based on code by ramiro)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14808 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 164df409
...@@ -23,6 +23,12 @@ ...@@ -23,6 +23,12 @@
* Principal component analysis * Principal component analysis
*/ */
struct PCA *ff_pca_init(int n);
void ff_pca_free(struct PCA *pca);
void ff_pca_add(struct PCA *pca, double *v);
int ff_pca(struct PCA *pca, double *eigenvector, double *eigenvalue);
typedef struct PCA{ typedef struct PCA{
int count; int count;
int n; int n;
......
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