|
From: Gustavo P. B. <gb...@us...> - 2005-06-28 22:16:36
|
Update of /cvsroot/kimageprocess/kimageprocess/src/methods/glcm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2377/methods/glcm Modified Files: glcm.cpp Log Message: Using now just one function when parsing data Index: glcm.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/glcm/glcm.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- glcm.cpp 23 Jun 2005 23:19:42 -0000 1.10 +++ glcm.cpp 28 Jun 2005 22:16:28 -0000 1.11 @@ -97,10 +97,7 @@ for (j=0; j < results[k].count(); ++j) result.append(results[k][j]); - if (m_testingData) - calc->parseResults(result); - else - calc->parseSampleResults(result, imgClass); + calc->parseResults(result, imgClass); } //delete the GLCM's after calculating |