Searched refs:queryDescCount (Results 1 - 4 of 4) sorted by relevance

/external/opencv3/modules/features2d/test/ocl/
H A Dtest_brute_force_matcher.cpp64 int queryDescCount; local
75 queryDescCount = 300; // must be even number because we split train data in some cases in two
82 queryBuf.create(queryDescCount, dim, CV_32SC1);
91 trainBuf.create(queryDescCount * countFactor, dim, CV_32FC1);
93 for (int qIdx = 0; qIdx < queryDescCount; qIdx++)
125 ASSERT_EQ(static_cast<size_t>(queryDescCount), matches.size());
151 ASSERT_EQ(static_cast<size_t>(queryDescCount), matches.size());
187 ASSERT_EQ(static_cast<size_t>(queryDescCount), matches.size());
/external/opencv3/modules/features2d/test/
H A Dtest_matchers_algorithmic.cpp62 static const int queryDescCount = 300; // must be even number because we split train data in some cases in two member in class:CV_DescriptorMatcherTest
167 Mat buf( queryDescCount, dim, CV_32SC1 );
202 if( (int)matches.size() != queryDescCount )
216 if( (float)badCount > (float)queryDescCount*badPart )
219 (float)badCount/(float)queryDescCount );
263 for( int di = 0; di < queryDescCount/2; di++ )
269 if( (int)matches.size() != queryDescCount )
282 if( i < queryDescCount/2 )
289 if( (match.queryIdx != (int)i) || (match.trainIdx != ((int)i-queryDescCount/2)*countFactor + shift) || (match.imgIdx != 1) )
294 if( (float)badCount > (float)queryDescCount*badPar
[all...]
/external/opencv3/modules/cudafeatures2d/test/
H A Dtest_features2d.cpp233 int queryDescCount; local
247 queryDescCount = 300; // must be even number because we split train data in some cases in two
256 queryBuf.create(queryDescCount, dim, CV_32SC1);
265 trainBuf.create(queryDescCount * countFactor, dim, CV_32FC1);
267 for (int qIdx = 0; qIdx < queryDescCount; qIdx++)
301 ASSERT_EQ(static_cast<size_t>(queryDescCount), matches.size());
330 for (int di = 0; di < queryDescCount/2; di++)
340 ASSERT_EQ(static_cast<size_t>(queryDescCount), matches.size());
348 if ((int)i < queryDescCount / 2)
359 bool validTrainIdx = (match.trainIdx == ((int)i - queryDescCount /
[all...]
/external/opencv3/modules/features2d/perf/
H A Dperf_batchDistance.cpp137 const int queryDescCount = 300; // must be even number because we split train data in some cases in two local
143 Mat buf( queryDescCount, dim, CV_32SC1 );

Completed in 145 milliseconds