类 DMatch


  • public class DMatch
    extends java.lang.Object
    匹配结构:查询描述符索引、训练描述符索引、训练图像索引以及描述符之间的距离。
    • 字段摘要

      字段 
      修饰符和类型 字段 描述
      float distance  
      int imgIdx
      训练图像索引。
      int queryIdx
      查询描述符索引。
      int trainIdx
      训练描述符索引。
    • 构造函数摘要

      构造函数 
      构造函数 描述
      DMatch()  
      DMatch​(int _queryIdx, int _trainIdx, float _distance)  
      DMatch​(int _queryIdx, int _trainIdx, int _imgIdx, float _distance)  
    • 方法摘要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 描述
      boolean lessThan​(DMatch it)  
      java.lang.String toString()  
      • 继承自类 java.lang.Object 的方法

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 字段详情

      • queryIdx

        public int queryIdx
        查询描述符索引。
      • trainIdx

        public int trainIdx
        训练描述符索引。
      • imgIdx

        public int imgIdx
        训练图像索引。
      • distance

        public float distance
    • 构造函数详情

      • DMatch

        public DMatch()
      • DMatch

        public DMatch​(int _queryIdx,
                      int _trainIdx,
                      float _distance)
      • DMatch

        public DMatch​(int _queryIdx,
                      int _trainIdx,
                      int _imgIdx,
                      float _distance)
    • 方法详情

      • lessThan

        public boolean lessThan​(DMatch it)
      • toString

        public java.lang.String toString()
        重写
        toString 在类 java.lang.Object