annotate pca.c @ 551:fe6d70cb51a6 libavutil

fix includes
author michael
date Sun, 17 Aug 2008 15:32:13 +0000
parents 200789f57b62
children e525876e4ddd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
550
200789f57b62 Principal component analysis
michael
parents:
diff changeset
1 /*
200789f57b62 Principal component analysis
michael
parents:
diff changeset
2 * Principal component analysis
200789f57b62 Principal component analysis
michael
parents:
diff changeset
3 * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
200789f57b62 Principal component analysis
michael
parents:
diff changeset
4 *
200789f57b62 Principal component analysis
michael
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
200789f57b62 Principal component analysis
michael
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
200789f57b62 Principal component analysis
michael
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
200789f57b62 Principal component analysis
michael
parents:
diff changeset
8 * version 2 of the License, or (at your option) any later version.
200789f57b62 Principal component analysis
michael
parents:
diff changeset
9 *
200789f57b62 Principal component analysis
michael
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
200789f57b62 Principal component analysis
michael
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
200789f57b62 Principal component analysis
michael
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
200789f57b62 Principal component analysis
michael
parents:
diff changeset
13 * Lesser General Public License for more details.
200789f57b62 Principal component analysis
michael
parents:
diff changeset
14 *
200789f57b62 Principal component analysis
michael
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
200789f57b62 Principal component analysis
michael
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
200789f57b62 Principal component analysis
michael
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
200789f57b62 Principal component analysis
michael
parents:
diff changeset
18 *
200789f57b62 Principal component analysis
michael
parents:
diff changeset
19 */
200789f57b62 Principal component analysis
michael
parents:
diff changeset
20
200789f57b62 Principal component analysis
michael
parents:
diff changeset
21 /**
200789f57b62 Principal component analysis
michael
parents:
diff changeset
22 * @file pca.c
200789f57b62 Principal component analysis
michael
parents:
diff changeset
23 * Principal component analysis
200789f57b62 Principal component analysis
michael
parents:
diff changeset
24 */
200789f57b62 Principal component analysis
michael
parents:
diff changeset
25
551
fe6d70cb51a6 fix includes
michael
parents: 550
diff changeset
26 #include "common.h"
550
200789f57b62 Principal component analysis
michael
parents:
diff changeset
27 #include "pca.h"
200789f57b62 Principal component analysis
michael
parents:
diff changeset
28
200789f57b62 Principal component analysis
michael
parents:
diff changeset
29 int ff_pca_init(PCA *pca, int n){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
30 if(n<=0)
200789f57b62 Principal component analysis
michael
parents:
diff changeset
31 return -1;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
32
200789f57b62 Principal component analysis
michael
parents:
diff changeset
33 pca->n= n;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
34 pca->count=0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
35 pca->covariance= av_mallocz(sizeof(double)*n*n);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
36 pca->mean= av_mallocz(sizeof(double)*n);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
37
200789f57b62 Principal component analysis
michael
parents:
diff changeset
38 return 0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
39 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
40
200789f57b62 Principal component analysis
michael
parents:
diff changeset
41 void ff_pca_free(PCA *pca){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
42 av_freep(&pca->covariance);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
43 av_freep(&pca->mean);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
44 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
45
200789f57b62 Principal component analysis
michael
parents:
diff changeset
46 void ff_pca_add(PCA *pca, double *v){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
47 int i, j;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
48 const int n= pca->n;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
49
200789f57b62 Principal component analysis
michael
parents:
diff changeset
50 for(i=0; i<n; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
51 pca->mean[i] += v[i];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
52 for(j=i; j<n; j++)
200789f57b62 Principal component analysis
michael
parents:
diff changeset
53 pca->covariance[j + i*n] += v[i]*v[j];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
54 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
55 pca->count++;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
56 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
57
200789f57b62 Principal component analysis
michael
parents:
diff changeset
58 int ff_pca(PCA *pca, double *eigenvector, double *eigenvalue){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
59 int i, j, k, pass;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
60 const int n= pca->n;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
61 double z[n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
62
200789f57b62 Principal component analysis
michael
parents:
diff changeset
63 memset(eigenvector, 0, sizeof(double)*n*n);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
64
200789f57b62 Principal component analysis
michael
parents:
diff changeset
65 for(j=0; j<n; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
66 pca->mean[j] /= pca->count;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
67 eigenvector[j + j*n] = 1.0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
68 for(i=0; i<=j; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
69 pca->covariance[j + i*n] /= pca->count;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
70 pca->covariance[j + i*n] -= pca->mean[i] * pca->mean[j];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
71 pca->covariance[i + j*n] = pca->covariance[j + i*n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
72 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
73 eigenvalue[j]= pca->covariance[j + j*n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
74 z[j]= 0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
75 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
76
200789f57b62 Principal component analysis
michael
parents:
diff changeset
77 for(pass=0; pass < 50; pass++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
78 double sum=0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
79
200789f57b62 Principal component analysis
michael
parents:
diff changeset
80 for(i=0; i<n; i++)
200789f57b62 Principal component analysis
michael
parents:
diff changeset
81 for(j=i+1; j<n; j++)
200789f57b62 Principal component analysis
michael
parents:
diff changeset
82 sum += fabs(pca->covariance[j + i*n]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
83
200789f57b62 Principal component analysis
michael
parents:
diff changeset
84 if(sum == 0){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
85 for(i=0; i<n; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
86 double maxvalue= -1;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
87 for(j=i; j<n; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
88 if(eigenvalue[j] > maxvalue){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
89 maxvalue= eigenvalue[j];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
90 k= j;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
91 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
92 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
93 eigenvalue[k]= eigenvalue[i];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
94 eigenvalue[i]= maxvalue;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
95 for(j=0; j<n; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
96 double tmp= eigenvector[k + j*n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
97 eigenvector[k + j*n]= eigenvector[i + j*n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
98 eigenvector[i + j*n]= tmp;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
99 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
100 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
101 return pass;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
102 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
103
200789f57b62 Principal component analysis
michael
parents:
diff changeset
104 for(i=0; i<n; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
105 for(j=i+1; j<n; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
106 double covar= pca->covariance[j + i*n];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
107 double t,c,s,tau,theta, h;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
108
200789f57b62 Principal component analysis
michael
parents:
diff changeset
109 if(pass < 3 && fabs(covar) < sum / (5*n*n)) //FIXME why pass < 3
200789f57b62 Principal component analysis
michael
parents:
diff changeset
110 continue;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
111 if(fabs(covar) == 0.0) //FIXME shouldnt be needed
200789f57b62 Principal component analysis
michael
parents:
diff changeset
112 continue;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
113 if(pass >=3 && fabs((eigenvalue[j]+z[j])/covar) > (1LL<<32) && fabs((eigenvalue[i]+z[i])/covar) > (1LL<<32)){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
114 pca->covariance[j + i*n]=0.0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
115 continue;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
116 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
117
200789f57b62 Principal component analysis
michael
parents:
diff changeset
118 h= (eigenvalue[j]+z[j]) - (eigenvalue[i]+z[i]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
119 theta=0.5*h/covar;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
120 t=1.0/(fabs(theta)+sqrt(1.0+theta*theta));
200789f57b62 Principal component analysis
michael
parents:
diff changeset
121 if(theta < 0.0) t = -t;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
122
200789f57b62 Principal component analysis
michael
parents:
diff changeset
123 c=1.0/sqrt(1+t*t);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
124 s=t*c;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
125 tau=s/(1.0+c);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
126 z[i] -= t*covar;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
127 z[j] += t*covar;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
128
200789f57b62 Principal component analysis
michael
parents:
diff changeset
129 #define ROTATE(a,i,j,k,l)\
200789f57b62 Principal component analysis
michael
parents:
diff changeset
130 double g=a[j + i*n];\
200789f57b62 Principal component analysis
michael
parents:
diff changeset
131 double h=a[l + k*n];\
200789f57b62 Principal component analysis
michael
parents:
diff changeset
132 a[j + i*n]=g-s*(h+g*tau);\
200789f57b62 Principal component analysis
michael
parents:
diff changeset
133 a[l + k*n]=h+s*(g-h*tau);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
134 for(k=0; k<n; k++) {
200789f57b62 Principal component analysis
michael
parents:
diff changeset
135 if(k!=i && k!=j){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
136 ROTATE(pca->covariance,FFMIN(k,i),FFMAX(k,i),FFMIN(k,j),FFMAX(k,j))
200789f57b62 Principal component analysis
michael
parents:
diff changeset
137 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
138 ROTATE(eigenvector,k,i,k,j)
200789f57b62 Principal component analysis
michael
parents:
diff changeset
139 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
140 pca->covariance[j + i*n]=0.0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
141 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
142 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
143 for (i=0; i<n; i++) {
200789f57b62 Principal component analysis
michael
parents:
diff changeset
144 eigenvalue[i] += z[i];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
145 z[i]=0.0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
146 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
147 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
148
200789f57b62 Principal component analysis
michael
parents:
diff changeset
149 return -1;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
150 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
151
200789f57b62 Principal component analysis
michael
parents:
diff changeset
152 #if 1
200789f57b62 Principal component analysis
michael
parents:
diff changeset
153
200789f57b62 Principal component analysis
michael
parents:
diff changeset
154 #undef printf
200789f57b62 Principal component analysis
michael
parents:
diff changeset
155 #include <stdio.h>
200789f57b62 Principal component analysis
michael
parents:
diff changeset
156 #include <stdlib.h>
200789f57b62 Principal component analysis
michael
parents:
diff changeset
157
200789f57b62 Principal component analysis
michael
parents:
diff changeset
158 int main(){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
159 PCA pca;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
160 int i, j, k;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
161 #define LEN 8
200789f57b62 Principal component analysis
michael
parents:
diff changeset
162 double eigenvector[LEN*LEN];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
163 double eigenvalue[LEN];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
164
200789f57b62 Principal component analysis
michael
parents:
diff changeset
165 ff_pca_init(&pca, LEN);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
166
200789f57b62 Principal component analysis
michael
parents:
diff changeset
167 for(i=0; i<9000000; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
168 double v[2*LEN+100];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
169 double sum=0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
170 int pos= random()%LEN;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
171 int v2= (random()%101) - 50;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
172 v[0]= (random()%101) - 50;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
173 for(j=1; j<8; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
174 if(j<=pos) v[j]= v[0];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
175 else v[j]= v2;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
176 sum += v[j];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
177 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
178 /* for(j=0; j<LEN; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
179 v[j] -= v[pos];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
180 }*/
200789f57b62 Principal component analysis
michael
parents:
diff changeset
181 // sum += random()%10;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
182 /* for(j=0; j<LEN; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
183 v[j] -= sum/LEN;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
184 }*/
200789f57b62 Principal component analysis
michael
parents:
diff changeset
185 // lbt1(v+100,v+100,LEN);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
186 ff_pca_add(&pca, v);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
187 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
188
200789f57b62 Principal component analysis
michael
parents:
diff changeset
189
200789f57b62 Principal component analysis
michael
parents:
diff changeset
190 ff_pca(&pca, eigenvector, eigenvalue);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
191 for(i=0; i<LEN; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
192 pca.count= 1;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
193 pca.mean[i]= 0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
194
200789f57b62 Principal component analysis
michael
parents:
diff changeset
195 // (0.5^|x|)^2 = 0.5^2|x| = 0.25^|x|
200789f57b62 Principal component analysis
michael
parents:
diff changeset
196
200789f57b62 Principal component analysis
michael
parents:
diff changeset
197
200789f57b62 Principal component analysis
michael
parents:
diff changeset
198 // pca.covariance[i + i*LEN]= pow(0.5, fabs
200789f57b62 Principal component analysis
michael
parents:
diff changeset
199 for(j=i; j<LEN; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
200 printf("%f ", pca.covariance[i + j*LEN]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
201 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
202 printf("\n");
200789f57b62 Principal component analysis
michael
parents:
diff changeset
203 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
204
200789f57b62 Principal component analysis
michael
parents:
diff changeset
205 #if 1
200789f57b62 Principal component analysis
michael
parents:
diff changeset
206 for(i=0; i<LEN; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
207 double v[LEN];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
208 double error=0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
209 memset(v, 0, sizeof(v));
200789f57b62 Principal component analysis
michael
parents:
diff changeset
210 for(j=0; j<LEN; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
211 for(k=0; k<LEN; k++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
212 v[j] += pca.covariance[FFMIN(k,j) + FFMAX(k,j)*LEN] * eigenvector[i + k*LEN];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
213 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
214 v[j] /= eigenvalue[i];
200789f57b62 Principal component analysis
michael
parents:
diff changeset
215 error += fabs(v[j] - eigenvector[i + j*LEN]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
216 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
217 printf("%f ", error);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
218 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
219 printf("\n");
200789f57b62 Principal component analysis
michael
parents:
diff changeset
220 #endif
200789f57b62 Principal component analysis
michael
parents:
diff changeset
221 for(i=0; i<LEN; i++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
222 for(j=0; j<LEN; j++){
200789f57b62 Principal component analysis
michael
parents:
diff changeset
223 printf("%9.6f ", eigenvector[i + j*LEN]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
224 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
225 printf(" %9.1f %f\n", eigenvalue[i], eigenvalue[i]/eigenvalue[0]);
200789f57b62 Principal component analysis
michael
parents:
diff changeset
226 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
227
200789f57b62 Principal component analysis
michael
parents:
diff changeset
228 return 0;
200789f57b62 Principal component analysis
michael
parents:
diff changeset
229 }
200789f57b62 Principal component analysis
michael
parents:
diff changeset
230 #endif