From cc0d7674ee700611536c26470018af831e7c5f8b Mon Sep 17 00:00:00 2001 From: Jose Luis Blanco Date: Tue, 25 May 2010 07:31:44 +0000 Subject: [PATCH] fixed a simple declaration error. --- tests/cv/src/adetectordescriptor_evaluation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cv/src/adetectordescriptor_evaluation.cpp b/tests/cv/src/adetectordescriptor_evaluation.cpp index ef4626f56a..fc9cf945cf 100644 --- a/tests/cv/src/adetectordescriptor_evaluation.cpp +++ b/tests/cv/src/adetectordescriptor_evaluation.cpp @@ -1557,7 +1557,7 @@ void DescriptorQualityTest::writeResults( FileStorage& fs, int datasetIdx, int c fs << PRECISION << calcQuality[datasetIdx][caseIdx].precision; } -void DescriptorQualityTest::DescriptorQualityTest::readDatasetRunParams( FileNode& fn, int datasetIdx ) +void DescriptorQualityTest::readDatasetRunParams( FileNode& fn, int datasetIdx ) { commRunParams[datasetIdx].keypontsFilename = (string)fn[KEYPOINTS_FILENAME]; commRunParams[datasetIdx].projectKeypointsFrom1Image = (int)fn[PROJECT_KEYPOINTS_FROM_1IMAGE] != 0;