类 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