Package org.opencv.xfeatures2d
Class StarDetector
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.xfeatures2d.StarDetector
 
 
 
- 
 public class StarDetector extends Feature2D The class implements the keypoint detector introduced by CITE: Agrawal08, synonym of StarDetector. :
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedStarDetector(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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()Returns the algorithm string identifier.intgetLineThresholdBinarized()intgetLineThresholdProjected()intgetMaxSize()intgetResponseThreshold()intgetSuppressNonmaxSize()voidsetLineThresholdBinarized(int _lineThresholdBinarized)voidsetLineThresholdProjected(int _lineThresholdProjected)voidsetMaxSize(int _maxSize)voidsetResponseThreshold(int _responseThreshold)voidsetSuppressNonmaxSize(int _suppressNonmaxSize)- 
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
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static StarDetector __fromPtr__(long addr) 
 - 
createpublic static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize) 
 - 
createpublic static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized) 
 - 
createpublic static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected) 
 - 
createpublic static StarDetector create(int maxSize, int responseThreshold) 
 - 
createpublic static StarDetector create(int maxSize) 
 - 
createpublic static StarDetector create() 
 - 
setMaxSizepublic void setMaxSize(int _maxSize) 
 - 
getMaxSizepublic int getMaxSize() 
 - 
setResponseThresholdpublic void setResponseThreshold(int _responseThreshold) 
 - 
getResponseThresholdpublic int getResponseThreshold() 
 - 
setLineThresholdProjectedpublic void setLineThresholdProjected(int _lineThresholdProjected) 
 - 
getLineThresholdProjectedpublic int getLineThresholdProjected() 
 - 
setLineThresholdBinarizedpublic void setLineThresholdBinarized(int _lineThresholdBinarized) 
 - 
getLineThresholdBinarizedpublic int getLineThresholdBinarized() 
 - 
setSuppressNonmaxSizepublic void setSuppressNonmaxSize(int _suppressNonmaxSize) 
 - 
getSuppressNonmaxSizepublic int getSuppressNonmaxSize() 
 - 
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
 
 
- 
 
-