类 KeyPoint
- java.lang.Object
-
- org.opencv.core.KeyPoint
-
public class KeyPoint extends java.lang.Object
-
-
构造函数摘要
构造函数 构造函数 描述 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)
-
-
-
字段详细信息
-
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)
-
-