|
From: Gustavo P. B. <gb...@us...> - 2005-04-06 04:13:03
|
Update of /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm/features/correlation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25586/src/methods/hsvcm/features/correlation Modified Files: correlation.cpp correlation.h Log Message: - Implemented the usage of the features in KTHSVCM - implemented entropy function - implemented angsecmom function Index: correlation.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm/features/correlation/correlation.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- correlation.cpp 6 Apr 2005 01:50:46 -0000 1.2 +++ correlation.cpp 6 Apr 2005 04:12:53 -0000 1.3 @@ -46,7 +46,7 @@ } -float KTHSVCMCorrelation::calculate(KTImage *img, int direction) +float KTHSVCMCorrelation::_calculate(KTImage *img, int direction) { int cmSize[3]; float ***cm = (float***) method()->data(direction); Index: correlation.h =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm/features/correlation/correlation.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- correlation.h 5 Apr 2005 22:49:09 -0000 1.1 +++ correlation.h 6 Apr 2005 04:12:54 -0000 1.2 @@ -39,7 +39,7 @@ ~KTHSVCMCorrelation(); - float calculate(KTImage *img, int direction); + float _calculate(KTImage *img, int direction); }; #endif |