|
From: Gustavo P. B. <gb...@us...> - 2005-07-13 03:31:23
|
Update of /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21028/src/methods/hsvcm Modified Files: hsvcm.cpp hsvcm.h Log Message: Re-enabled caching (but this time working) Index: hsvcm.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm/hsvcm.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- hsvcm.cpp 28 Jun 2005 22:16:28 -0000 1.14 +++ hsvcm.cpp 13 Jul 2005 03:31:14 -0000 1.15 @@ -59,7 +59,7 @@ { } -void KTHSVCM::calculate(KTImage *img, int imgClass) +void KTHSVCM::_calculate(KTImage *img, int imgClass) { m_img = img; Index: hsvcm.h =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/methods/hsvcm/hsvcm.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- hsvcm.h 23 Jun 2005 23:19:42 -0000 1.6 +++ hsvcm.h 13 Jul 2005 03:31:14 -0000 1.7 @@ -47,7 +47,7 @@ ~KTHSVCM(); - void calculate(KTImage *img, int imgClass = 0); + void _calculate(KTImage *img, int imgClass = 0); void *data(int direction) const; |