Home
last modified time | relevance | path

Searched refs:match_index (Results 1 – 6 of 6) sorted by relevance

/external/vboot_reference/cgpt/
Dcgpt.c58 int match_index = 0; in main() local
79 match_index = i; in main()
85 match_index = i; in main()
91 return cmds[match_index].fp(argc, argv); in main()
/external/opencv3/samples/python2/
Ddemo.py143match_index = text.search(pattern, 'matchPos', count=count, regexp=regexp, stopindex='end')
144 if not match_index:
146 end_index = text.index( "%s+%sc" % (match_index, count.get()) )
149 tag_proc(match_index, end_index, text.get(match_index, end_index))
151 text.tag_add(tag_proc, match_index, end_index)
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Dmain_detection.cpp210 for(unsigned int match_index = 0; match_index < good_matches.size(); ++match_index) in main() local
212 …Point3f point3d_model = list_points3d_model[ good_matches[match_index].trainIdx ]; // 3D point fr… in main()
213 …Point2f point2d_scene = keypoints_scene[ good_matches[match_index].queryIdx ].pt; // 2D point from… in main()
/external/autotest/client/common_lib/
Dpexpect.py389 self.match_index = None
464 s.append('match_index: ' + str(self.match_index))
1372 self.match_index = index
1373 return self.match_index
1391 self.match_index = index
1392 return self.match_index
1395 self.match_index = None
1404 self.match_index = index
1405 return self.match_index
1408 self.match_index = None
[all …]
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc545 Py_ssize_t match_index = -1; in Remove() local
549 match_index = i; in Remove()
553 if (match_index == -1) { in Remove()
557 if (AssignItem(self, match_index, NULL) < 0) { in Remove()
/external/opencv3/doc/tutorials/calib3d/real_time_pose/
Dreal_time_pose.markdown362 for(unsigned int match_index = 0; match_index < good_matches.size(); ++match_index)
364 …cv::Point3f point3d_model = list_points3d_model[ good_matches[match_index].trainIdx ]; // 3D poi…
365 …cv::Point2f point2d_scene = keypoints_scene[ good_matches[match_index].queryIdx ].pt; // 2D poi…