Package org.opencv.features2d
Class AgastFeatureDetector
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.features2d.AgastFeatureDetector
 
 
 
- 
 public class AgastFeatureDetector extends Feature2D Wrapping class for feature detection using the AGAST method. :
- 
- 
Field SummaryFields Modifier and Type Field Description static intAGAST_5_8static intAGAST_7_12dstatic intAGAST_7_12sstatic intNONMAX_SUPPRESSIONstatic intOAST_9_16static intTHRESHOLD
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedAgastFeatureDetector(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AgastFeatureDetector__fromPtr__(long addr)static AgastFeatureDetectorcreate()static AgastFeatureDetectorcreate(int threshold)static AgastFeatureDetectorcreate(int threshold, boolean nonmaxSuppression)static AgastFeatureDetectorcreate(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- 
THRESHOLDpublic static final int THRESHOLD - See Also:
- Constant Field Values
 
 - 
NONMAX_SUPPRESSIONpublic static final int NONMAX_SUPPRESSION - See Also:
- Constant Field Values
 
 - 
AGAST_5_8public static final int AGAST_5_8 - See Also:
- Constant Field Values
 
 - 
AGAST_7_12dpublic static final int AGAST_7_12d - See Also:
- Constant Field Values
 
 - 
AGAST_7_12spublic static final int AGAST_7_12s - See Also:
- Constant Field Values
 
 - 
OAST_9_16public static final int OAST_9_16 - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
__fromPtr__public static AgastFeatureDetector __fromPtr__(long addr) 
 - 
createpublic static AgastFeatureDetector create(int threshold, boolean nonmaxSuppression, int type) 
 - 
createpublic static AgastFeatureDetector create(int threshold, boolean nonmaxSuppression) 
 - 
createpublic static AgastFeatureDetector create(int threshold) 
 - 
createpublic static AgastFeatureDetector 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
 
 
- 
 
-