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