Package org.opencv.xfeatures2d
Class StarDetector
java.lang.Object
org.opencv.core.Algorithm
org.opencv.features2d.Feature2D
org.opencv.xfeatures2d.StarDetector
The class implements the keypoint detector introduced by CITE: Agrawal08, synonym of StarDetector. :
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic 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()Returns the algorithm string identifier.intintintintintvoidsetLineThresholdBinarized(int _lineThresholdBinarized) voidsetLineThresholdProjected(int _lineThresholdProjected) voidsetMaxSize(int _maxSize) voidsetResponseThreshold(int _responseThreshold) voidsetSuppressNonmaxSize(int _suppressNonmaxSize) Methods inherited from class org.opencv.features2d.Feature2D
compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, read, writeMethods inherited from class org.opencv.core.Algorithm
clear, getNativeObjAddr, save
-
Constructor Details
-
StarDetector
protected StarDetector(long addr)
-
-
Method Details
-
__fromPtr__
-
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
-
create
-
create
-
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
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 classFeature2D- Returns:
- automatically generated
-
finalize
-