类 FastFeatureDetector
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.features2d.FastFeatureDetector
-
public class FastFeatureDetector extends Feature2D
使用 FAST 方法进行特征检测的包装类。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 保护FastFeatureDetector(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static FastFeatureDetector__fromPtr__(long addr)static FastFeatureDetectorcreate()static FastFeatureDetectorcreate(int threshold)static FastFeatureDetectorcreate(int threshold, boolean nonmaxSuppression)static FastFeatureDetectorcreate(int threshold, boolean nonmaxSuppression, int type)protected voidfinalize()java.lang.StringgetDefaultName()返回算法字符串标识符。booleangetNonmaxSuppression()intgetThreshold()intgetType()voidsetNonmaxSuppression(boolean f)voidsetThreshold(int threshold)voidsetType(int type)-
从类 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
-
-
-
-
字段详细信息
-
阈值
public static final int THRESHOLD
- 参见
- 常量字段值
-
非极大值抑制
public static final int NONMAX_SUPPRESSION
- 参见
- 常量字段值
-
FAST_N
public static final int FAST_N
- 参见
- 常量字段值
-
TYPE_5_8
public static final int TYPE_5_8
- 参见
- 常量字段值
-
TYPE_7_12
public static final int TYPE_7_12
- 参见
- 常量字段值
-
TYPE_9_16
public static final int TYPE_9_16
- 参见
- 常量字段值
-
-
方法详细信息
-
__fromPtr__
public static FastFeatureDetector __fromPtr__(long addr)
-
create
public static FastFeatureDetector create(int threshold, boolean nonmaxSuppression, int type)
-
create
public static FastFeatureDetector create(int threshold, boolean nonmaxSuppression)
-
create
public static FastFeatureDetector create(int threshold)
-
create
public static FastFeatureDetector create()
-
setThreshold
public void setThreshold(int threshold)
-
getThreshold
public int getThreshold()
-
setNonmaxSuppression
public void setNonmaxSuppression(boolean f)
-
getNonmaxSuppression
public boolean getNonmaxSuppression()
-
setType
public void setType(int type)
-
getType
public int getType()
-
getDefaultName
public java.lang.String getDefaultName()
从类复制的描述:Algorithm返回算法字符串标识符。 当对象保存到文件或字符串时,此字符串用作顶级 xml/yml 节点标签。- 重写
getDefaultName在类中Feature2D- 返回
- 自动生成
-
-