类 StarDetector
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.xfeatures2d.StarDetector
-
public class StarDetector extends Feature2D
此类实现了 CITE: Agrawal08 中介绍的关键点检测器,与 StarDetector 同义。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protected
StarDetector(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static StarDetector
__fromPtr__(long addr)
static StarDetector
创建()
static StarDetector
create(int maxSize)
static StarDetector
create(int maxSize, int responseThreshold)
static StarDetector
create(int maxSize, int responseThreshold, int lineThresholdProjected)
static StarDetector
create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized)
static StarDetector
create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize)
protected void
finalize()
java.lang.String
getDefaultName()
返回算法字符串标识符。int
getLineThresholdBinarized()
int
getLineThresholdProjected()
int
getMaxSize()
int
getResponseThreshold()
int
getSuppressNonmaxSize()
void
setLineThresholdBinarized(int _lineThresholdBinarized)
void
setLineThresholdProjected(int _lineThresholdProjected)
void
setMaxSize(int _maxSize)
void
setResponseThreshold(int _responseThreshold)
void
setSuppressNonmaxSize(int _suppressNonmaxSize)
-
继承自类 org.opencv.features2d.Feature2D 的方法
compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, read, write
-
继承自类 org.opencv.core.Algorithm 的方法
clear, getNativeObjAddr, save
-
-
-
-
方法详情
-
__fromPtr__
public static StarDetector __fromPtr__(long addr)
-
创建
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize)
-
创建
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized)
-
创建
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected)
-
创建
public static StarDetector create(int maxSize, int responseThreshold)
-
创建
public static StarDetector create(int maxSize)
-
创建
public static StarDetector create()
-
setMaxSize
public void setMaxSize(int _maxSize)
-
getMaxSize
public int getMaxSize()
-
setResponseThreshold
public void setResponseThreshold(int _responseThreshold)
-
getResponseThreshold
public int getResponseThreshold()
-
setLineThresholdProjected
public void setLineThresholdProjected(int _lineThresholdProjected)
-
getLineThresholdProjected
public int getLineThresholdProjected()
-
setLineThresholdBinarized
public void setLineThresholdBinarized(int _lineThresholdBinarized)
-
getLineThresholdBinarized
public int getLineThresholdBinarized()
-
setSuppressNonmaxSize
public void setSuppressNonmaxSize(int _suppressNonmaxSize)
-
getSuppressNonmaxSize
public int getSuppressNonmaxSize()
-
getDefaultName
public java.lang.String getDefaultName()
从类复制的描述:Algorithm
返回算法字符串标识符。将对象保存到文件或字符串时,此字符串用作顶级 xml/yml 节点标签。- 重写
getDefaultName
类中的Feature2D
- 返回
- 自动生成
-
-