类 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)
-
-