类 StarDetector
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.xfeatures2d.StarDetector
-
public class StarDetector extends Feature2D
此类实现了 CITE: Agrawal08 中介绍的关键点检测器,与 StarDetector 同义。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protectedStarDetector(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static StarDetector__fromPtr__(long addr)static StarDetector创建()static StarDetectorcreate(int maxSize)static StarDetectorcreate(int maxSize, int responseThreshold)static StarDetectorcreate(int maxSize, int responseThreshold, int lineThresholdProjected)static StarDetectorcreate(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized)static StarDetectorcreate(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize)protected voidfinalize()java.lang.StringgetDefaultName()返回算法字符串标识符。intgetLineThresholdBinarized()intgetLineThresholdProjected()intgetMaxSize()intgetResponseThreshold()intgetSuppressNonmaxSize()voidsetLineThresholdBinarized(int _lineThresholdBinarized)voidsetLineThresholdProjected(int _lineThresholdProjected)voidsetMaxSize(int _maxSize)voidsetResponseThreshold(int _responseThreshold)voidsetSuppressNonmaxSize(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- 返回
- 自动生成
-
-