类 StarDetector
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.xfeatures2d.StarDetector
-
public class StarDetector extends Feature2D
该类实现了由 CITE: Agrawal08 引入的关键点检测器,是 StarDetector 的同义词。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 保护StarDetector(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static StarDetector__fromPtr__(long addr)static StarDetectorcreate()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)
-
create
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize)
-
create
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized)
-
create
public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected)
-
create
public static StarDetector create(int maxSize, int responseThreshold)
-
create
public static StarDetector create(int maxSize)
-
create
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- 返回
- 自动生成
-
-