Package org.opencv.features2d
Class FastFeatureDetector
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.features2d.FastFeatureDetector
 
 
 
- 
 public class FastFeatureDetector extends Feature2D Wrapping class for feature detection using the FAST method. :
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedFastFeatureDetector(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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()Returns the algorithm string identifier.booleangetNonmaxSuppression()intgetThreshold()intgetType()voidsetNonmaxSuppression(boolean f)voidsetThreshold(int threshold)voidsetType(int type)- 
Methods inherited from class org.opencv.features2d.Feature2Dcompute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, read, write
 - 
Methods inherited from class org.opencv.core.Algorithmclear, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Field Detail- 
TYPE_5_8public static final int TYPE_5_8 - See Also:
- Constant Field Values
 
 - 
TYPE_7_12public static final int TYPE_7_12 - See Also:
- Constant Field Values
 
 - 
TYPE_9_16public static final int TYPE_9_16 - See Also:
- Constant Field Values
 
 - 
THRESHOLDpublic static final int THRESHOLD - See Also:
- Constant Field Values
 
 - 
NONMAX_SUPPRESSIONpublic static final int NONMAX_SUPPRESSION - See Also:
- Constant Field Values
 
 - 
FAST_Npublic static final int FAST_N - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
__fromPtr__public static FastFeatureDetector __fromPtr__(long addr) 
 - 
createpublic static FastFeatureDetector create(int threshold, boolean nonmaxSuppression, int type) 
 - 
createpublic static FastFeatureDetector create(int threshold, boolean nonmaxSuppression) 
 - 
createpublic static FastFeatureDetector create(int threshold) 
 - 
createpublic static FastFeatureDetector create() 
 - 
setThresholdpublic void setThreshold(int threshold) 
 - 
getThresholdpublic int getThreshold() 
 - 
setNonmaxSuppressionpublic void setNonmaxSuppression(boolean f) 
 - 
getNonmaxSuppressionpublic boolean getNonmaxSuppression() 
 - 
setTypepublic void setType(int type) 
 - 
getTypepublic int getType() 
 - 
getDefaultNamepublic java.lang.String getDefaultName() Description copied from class:AlgorithmReturns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.- Overrides:
- getDefaultNamein class- Feature2D
- Returns:
- automatically generated
 
 
- 
 
-