|
From: Gustavo P. B. <gb...@us...> - 2005-04-06 04:13:01
|
Update of /cvsroot/kimageprocess/kimageprocess/src/methods/glcm/features/dummy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25586/src/methods/glcm/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/glcm/features/dummy/LOWER.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- LOWER.cpp 6 Apr 2005 01:50:41 -0000 1.3 +++ LOWER.cpp 6 Apr 2005 04:12:52 -0000 1.4 @@ -45,7 +45,7 @@ } -float KTGLCMNAME::calculate(KTImage *img, int direction) +float KTGLCMNAME::_calculate(KTImage *img, int direction) { int glcmSize = method()->dataSize(); float **glcm = (float**) method()->data(direction); Index: LOWER.h =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/glcm/features/dummy/LOWER.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- LOWER.h 23 Mar 2005 20:51:49 -0000 1.1 +++ LOWER.h 6 Apr 2005 04:12:52 -0000 1.2 @@ -39,7 +39,7 @@ ~KTGLCMNAME(); - float calculate(KTImage *img, int direction); + float _calculate(KTImage *img, int direction); }; #endif |