Home
last modified time | relevance | path

Searched refs:descMatches (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
Dgen_xmlpool.py159 descMatches = [] variable
161 if len(descMatches) > 0:
165 descMatches.append (matchENUM)
167 expandMatches (descMatches, translations, line)
168 descMatches = [] variable
181 assert len(descMatches) == 0
184 assert len(descMatches) == 0
185 descMatches = [matchDESC_BEGIN] variable
189 if len(descMatches) > 0:
191 expandMatches (descMatches, translations)
/external/opencv3/modules/features2d/test/
Dtest_rotation_and_scale_invariance.cpp349 vector<DMatch> descMatches; in run() local
350 bfmatcher.match(descriptors0, descriptors1, descMatches); in run()
353 for(size_t m = 0; m < descMatches.size(); m++) in run()
355 const KeyPoint& transformed_p0 = keypoints1[descMatches[m].queryIdx]; in run()
356 const KeyPoint& p1 = keypoints1[descMatches[m].trainIdx]; in run()
552 vector<DMatch> descMatches; in run() local
553 bfmatcher.match(descriptors0, descriptors1, descMatches); in run()
557 for(size_t m = 0; m < descMatches.size(); m++) in run()
559 const KeyPoint& transformed_p0 = keypoints0[descMatches[m].queryIdx]; in run()
560 const KeyPoint& p1 = keypoints0[descMatches[m].trainIdx]; in run()