HomeSort by relevance Sort by last modified time
    Searched refs:DMatch (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/opencv3/modules/core/misc/java/test/
DMatchTest.java 3 import org.opencv.core.DMatch;
9 new DMatch();
13 DMatch dm1 = new DMatch(1, 4, 4.0f);
21 DMatch dm2 = new DMatch(2, 6, -1, 8.0f);
30 DMatch dm1 = new DMatch(1, 4, 4.0f);
31 DMatch dm2 = new DMatch(2, 6, -1, 8.0f)
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+DMatch.java 3 //C++: class DMatch
9 public class DMatch {
24 // javadoc: DMatch::distance
27 // javadoc: DMatch::DMatch()
28 public DMatch() {
32 // javadoc: DMatch::DMatch(_queryIdx, _trainIdx, _distance)
33 public DMatch(int _queryIdx, int _trainIdx, float _distance) {
40 // javadoc: DMatch::DMatch(_queryIdx, _trainIdx, _imgIdx, _distance
    [all...]
core+MatOfDMatch.java 6 import org.opencv.core.DMatch;
35 public MatOfDMatch(DMatch...ap) {
46 public void fromArray(DMatch...a) {
53 DMatch m = a[i];
62 public DMatch[] toArray() {
64 DMatch[] a = new DMatch[num];
70 a[i] = new DMatch((int) buff[_channels*i+0], (int) buff[_channels*i+1], (int) buff[_channels*i+2], buff[_channels*i+3]);
74 public void fromList(List<DMatch> ldm) {
75 DMatch adm[] = ldm.toArray(new DMatch[0])
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
RobustMatcher.cpp 28 int RobustMatcher::ratioTest(std::vector<std::vector<cv::DMatch> > &matches)
32 for ( std::vector<std::vector<cv::DMatch> >::iterator
54 void RobustMatcher::symmetryTest( const std::vector<std::vector<cv::DMatch> >& matches1,
55 const std::vector<std::vector<cv::DMatch> >& matches2,
56 std::vector<cv::DMatch>& symMatches )
60 for (std::vector<std::vector<cv::DMatch> >::const_iterator
69 for (std::vector<std::vector<cv::DMatch> >::const_iterator
84 cv::DMatch((*matchIterator1)[0].queryIdx,
94 void RobustMatcher::robustMatch( const cv::Mat& frame, std::vector<cv::DMatch>& good_matches,
106 std::vector<std::vector<cv::DMatch> > matches12, matches21
    [all...]
RobustMatcher.h 53 int ratioTest(std::vector<std::vector<cv::DMatch> > &matches);
56 void symmetryTest( const std::vector<std::vector<cv::DMatch> >& matches1,
57 const std::vector<std::vector<cv::DMatch> >& matches2,
58 std::vector<cv::DMatch>& symMatches );
61 void robustMatch( const cv::Mat& frame, std::vector<cv::DMatch>& good_matches,
66 void fastRobustMatch( const cv::Mat& frame, std::vector<cv::DMatch>& good_matches,
  /external/opencv3/modules/features2d/misc/java/src/cpp/
features2d_converters.hpp 12 void Mat_to_vector_DMatch(cv::Mat& mat, std::vector<cv::DMatch>& v_dm);
13 void vector_DMatch_to_Mat(std::vector<cv::DMatch>& v_dm, cv::Mat& mat);
18 void Mat_to_vector_vector_DMatch(cv::Mat& mat, std::vector< std::vector< cv::DMatch > >& vv_dm);
19 void vector_vector_DMatch_to_Mat(std::vector< std::vector< cv::DMatch > >& vv_dm, cv::Mat& mat);
features2d_converters.cpp 37 void Mat_to_vector_DMatch(Mat& mat, std::vector<DMatch>& v_dm)
44 DMatch dm((int)v[0], (int)v[1], (int)v[2], v[3]);
51 void vector_DMatch_to_Mat(std::vector<DMatch>& v_dm, Mat& mat)
57 DMatch dm = v_dm[i];
88 void Mat_to_vector_vector_DMatch(Mat& mat, std::vector< std::vector< DMatch > >& vv_dm)
95 std::vector<DMatch> vdm;
101 void vector_vector_DMatch_to_Mat(std::vector< std::vector< DMatch > >& vv_dm, Mat& mat)
  /external/opencv3/modules/features2d/perf/opencl/
perf_brute_force_matcher.cpp 66 vector<DMatch> matches;
87 vector< vector<DMatch> > matches;
97 vector<DMatch> & matches0 = matches[0], & matches1 = matches[1];
111 vector< vector<DMatch> > matches;
121 vector<DMatch> & matches0 = matches[0], & matches1 = matches[1];
  /external/opencv3/modules/features2d/test/ocl/
test_brute_force_matcher.cpp 122 std::vector<cv::DMatch> matches;
130 cv::DMatch match = matches[i];
148 std::vector< std::vector<cv::DMatch> > matches;
163 cv::DMatch match = matches[i][k];
184 std::vector< std::vector<cv::DMatch> > matches;
198 cv::DMatch match = matches[i][0];
  /external/opencv3/modules/cudafeatures2d/perf/
perf_features2d.cpp 178 std::vector<cv::DMatch> gpu_matches;
187 std::vector<cv::DMatch> cpu_matches;
198 static void toOneRowMatches(const std::vector< std::vector<cv::DMatch> >& src, std::vector<cv::DMatch>& dst)
237 std::vector< std::vector<cv::DMatch> > matchesTbl;
240 std::vector<cv::DMatch> gpu_matches;
249 std::vector< std::vector<cv::DMatch> > matchesTbl;
253 std::vector<cv::DMatch> cpu_matches;
291 std::vector< std::vector<cv::DMatch> > matchesTbl;
294 std::vector<cv::DMatch> gpu_matches
    [all...]
  /external/opencv3/modules/cudafeatures2d/include/opencv2/
cudafeatures2d.hpp 155 std::vector<DMatch>& matches,
161 std::vector<DMatch>& matches,
199 @param matches Vector of DMatch objects.
202 std::vector<DMatch>& matches) = 0;
227 std::vector<std::vector<DMatch> >& matches,
235 std::vector<std::vector<DMatch> >& matches,
277 @param matches Vector of DMatch objects.
283 std::vector< std::vector<DMatch> >& matches,
310 std::vector<std::vector<DMatch> >& matches,
318 std::vector<std::vector<DMatch> >& matches
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/features2D/
AKAZE_match.cpp 30 vector< vector<DMatch> > nn_matches;
34 vector<DMatch> good_matches;
36 DMatch first = nn_matches[i][0];
60 good_matches.push_back(DMatch(new_i, new_i, 0));
  /external/opencv3/modules/features2d/misc/java/test/
BruteForceL1DescriptorMatcherTest.java 13 import org.opencv.core.DMatch;
26 DMatch[] truth;
88 truth = new DMatch[] {
89 new DMatch(0, 0, 0, 3.0975165f),
90 new DMatch(1, 1, 0, 3.5680308f),
91 new DMatch(2, 1, 0, 1.3722466f),
92 new DMatch(3, 1, 0, 1.3041023f),
93 new DMatch(4, 1, 0, 3.5970376f)
BruteForceSL2DescriptorMatcherTest.java 13 import org.opencv.core.DMatch;
26 DMatch[] truth;
93 truth = new DMatch[] {
94 new DMatch(0, 0, 0, 0.3858146f),
95 new DMatch(1, 1, 0, 0.8421953f),
96 new DMatch(2, 1, 0, 0.0968556f),
97 new DMatch(3, 1, 0, 0.0855606f),
98 new DMatch(4, 1, 0, 0.8666080f)
221 // for (DMatch m : matches)
BruteForceHammingDescriptorMatcherTest.java 14 import org.opencv.core.DMatch;
26 DMatch[] truth;
74 truth = new DMatch[] {
75 new DMatch(0, 0, 0, 51),
76 new DMatch(1, 2, 0, 42),
77 new DMatch(2, 1, 0, 40),
78 new DMatch(3, 3, 0, 53) };
BruteForceHammingLUTDescriptorMatcherTest.java 13 import org.opencv.core.DMatch;
25 DMatch[] truth;
73 truth = new DMatch[] {
74 new DMatch(0, 0, 0, 51),
75 new DMatch(1, 2, 0, 42),
76 new DMatch(2, 1, 0, 40),
77 new DMatch(3, 3, 0, 53) };
195 for (DMatch m : matches.toArray())
BruteForceDescriptorMatcherTest.java 14 import org.opencv.core.DMatch;
27 DMatch[] truth;
88 truth = new DMatch[] {
89 new DMatch(0, 0, 0, 0.6211397f),
90 new DMatch(1, 1, 0, 0.9177120f),
91 new DMatch(2, 1, 0, 0.3112163f),
92 new DMatch(3, 1, 0, 0.2925074f),
93 new DMatch(4, 1, 0, 0.9309178f)
187 for(DMatch dm : vdm.toArray())
235 // for (DMatch m : matches
    [all...]
FlannBasedDescriptorMatcherTest.java 14 import org.opencv.core.DMatch;
101 DMatch[] truth;
161 truth = new DMatch[] {
162 new DMatch(0, 0, 0, 0.6211397f),
163 new DMatch(1, 1, 0, 0.9177120f),
164 new DMatch(2, 1, 0, 0.3112163f),
165 new DMatch(3, 1, 0, 0.2925075f),
166 new DMatch(4, 1, 0, 0.9309179f)
  /external/opencv3/modules/features2d/test/
test_matchers_algorithmic.cpp 86 vector<DMatch> matches;
87 vector<vector<DMatch> > vmatches;
199 vector<DMatch> matches;
212 DMatch& match = matches[i];
227 vector<DMatch> matches;
239 DMatch& match = matches[i];
254 vector<DMatch> matches;
279 DMatch& match = matches[i];
312 vector<vector<DMatch> > matches;
332 DMatch& match = matches[i][k]
    [all...]
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp     [all...]
  /external/opencv3/modules/shape/include/opencv2/shape/
shape_transformer.hpp 68 std::vector<DMatch>& matches) = 0;
  /external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
LATCH_match.cpp 48 vector< vector<DMatch> > nn_matches;
52 vector<DMatch> good_matches;
54 DMatch first = nn_matches[i][0];
78 good_matches.push_back(DMatch(new_i, new_i, 0));
  /external/opencv3/modules/cudafeatures2d/src/
brute_force_matcher.cpp 211 std::vector<DMatch>& matches,
215 std::vector<DMatch>& matches,
229 std::vector<DMatch>& matches);
232 std::vector<std::vector<DMatch> >& matches,
238 std::vector<std::vector<DMatch> >& matches,
256 std::vector< std::vector<DMatch> >& matches,
260 std::vector<std::vector<DMatch> >& matches,
266 std::vector<std::vector<DMatch> >& matches,
284 std::vector< std::vector<DMatch> >& matches,
297 std::vector<DMatch>& matches
    [all...]
  /external/opencv3/modules/shape/src/
scd_def.hpp 115 void matchDescriptors(cv::Mat& descriptors1, cv::Mat& descriptors2, std::vector<cv::DMatch>& matches, cv::Ptr<cv::HistogramCostExtractor>& comparer,
126 void hungarian(cv::Mat& costMatrix, std::vector<cv::DMatch>& outMatches, std::vector<int> &inliers1,
  /external/opencv3/modules/java/common_test/src/org/opencv/test/utils/
ConvertersTest.java 8 import org.opencv.core.DMatch;
38 List<DMatch> matches = new ArrayList<DMatch>();
42 List<DMatch> truth = new ArrayList<DMatch>();
43 truth.add(new DMatch(1, 4, 4, 10));
44 truth.add(new DMatch(2, 3, 5, 6));
45 truth.add(new DMatch(3, 1, 8, 12));
46 truth.add(new DMatch(4, 9, 5, 15));
277 List<DMatch> matches = new ArrayList<DMatch>()
    [all...]

Completed in 3989 milliseconds

1 2 3