类 KeyPoint


  • public class KeyPoint
    extends java.lang.Object
    • 字段摘要

      字段 
      修饰符和类型 字段 描述
      float angle
      计算的关键点的方向(如果不可用,则为 -1)。
      int class_id
      对象 ID,可用于根据它们所属的对象对关键点进行聚类。
      int octave
      提取关键点的八度(金字塔层)。
      Point pt
      关键点的坐标。
      float response
      响应,根据该响应选择了最强烈的关键点。
      float size
      有用关键点邻近区域的直径。
    • 构造函数摘要

      构造函数 
      构造函数 描述
      KeyPoint()  
      KeyPoint​(float x, float y, float _size)  
      KeyPoint​(float x, float y, float _size, float _angle)  
      KeyPoint​(float x, float y, float _size, float _angle, float _response)  
      KeyPoint​(float x, float y, float _size, float _angle, float _response, int _octave)  
      KeyPoint​(float x, float y, float _size, float _angle, float _response, int _octave, int _class_id)  
    • 方法摘要

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

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

      • pt

        public Point pt
        关键点的坐标。
      • size

        public float size
        有用关键点邻近区域的直径。
      • angle

        public float angle
        计算的关键点的方向(如果不可用,则为 -1)。
      • response

        public float response
        响应,根据该响应选择了最强烈的关键点。可用于进一步排序或二次采样。
      • octave

        public int octave
        提取关键点的八度(金字塔层)。
      • class_id

        public int class_id
        对象 ID,可用于根据它们所属的对象对关键点进行聚类。
    • 构造函数详情

      • KeyPoint

        public KeyPoint​(float x,
                        float y,
                        float _size,
                        float _angle,
                        float _response,
                        int _octave,
                        int _class_id)
      • KeyPoint

        public KeyPoint()
      • KeyPoint

        public KeyPoint​(float x,
                        float y,
                        float _size,
                        float _angle,
                        float _response,
                        int _octave)
      • KeyPoint

        public KeyPoint​(float x,
                        float y,
                        float _size,
                        float _angle,
                        float _response)
      • KeyPoint

        public KeyPoint​(float x,
                        float y,
                        float _size,
                        float _angle)
      • KeyPoint

        public KeyPoint​(float x,
                        float y,
                        float _size)
    • 方法详情

      • toString

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