Move the sources to trunk
[opencv] / interfaces / ch / chfhandmade / cvCalcCovarMatrix.chf
1 void cvCalcCovarMatrix(CvArr** vects, int count, CvArr* cov_mat, CvArr* avg, int flags) {
2     void *fptr;
3
4     fptr = dlsym(_Chcv_handle, "cvCalcCovarMatrix_chdl");
5     if(fptr == NULL) {
6         fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
7         return;
8     }
9     dlrunfun(fptr, NULL, cvCalcCovarMatrix, vects, count, cov_mat, avg, flags);
10 }