HomeSort by relevance Sort by last modified time
    Searched defs:DMatch (Results 1 - 5 of 5) sorted by null

  /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...]
  /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/include/opencv2/core/
types.hpp 721 //////////////////////////////// DMatch /////////////////////////////////
728 class CV_EXPORTS_W_SIMPLE DMatch
731 CV_WRAP DMatch();
732 CV_WRAP DMatch(int _queryIdx, int _trainIdx, float _distance);
733 CV_WRAP DMatch(int _queryIdx, int _trainIdx, int _imgIdx, float _distance);
742 bool operator<(const DMatch &m) const;
745 template<> class DataType<DMatch>
748 typedef DMatch value_type;
    [all...]
base.hpp 603 class CV_EXPORTS DMatch;
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 176 milliseconds