Package org.opencv.features2d
Class GFTTDetector
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.features2d.GFTTDetector
 
 
 
- 
 public class GFTTDetector extends Feature2D Wrapping class for feature detection using the goodFeaturesToTrack function. :
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedGFTTDetector(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GFTTDetector__fromPtr__(long addr)static GFTTDetectorcreate()static GFTTDetectorcreate(int maxCorners)static GFTTDetectorcreate(int maxCorners, double qualityLevel)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize, boolean useHarrisDetector)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize, boolean useHarrisDetector, double k)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize, boolean useHarrisDetector)static GFTTDetectorcreate(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize, boolean useHarrisDetector, double k)protected voidfinalize()intgetBlockSize()java.lang.StringgetDefaultName()Returns the algorithm string identifier.intgetGradientSize()booleangetHarrisDetector()doublegetK()intgetMaxFeatures()doublegetMinDistance()doublegetQualityLevel()voidsetBlockSize(int blockSize)voidsetGradientSize(int gradientSize_)voidsetHarrisDetector(boolean val)voidsetK(double k)voidsetMaxFeatures(int maxFeatures)voidsetMinDistance(double minDistance)voidsetQualityLevel(double qlevel)- 
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 GFTTDetector __fromPtr__(long addr) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize, boolean useHarrisDetector, double k) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize, boolean useHarrisDetector) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel) 
 - 
createpublic static GFTTDetector create(int maxCorners) 
 - 
createpublic static GFTTDetector create() 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize, boolean useHarrisDetector, double k) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize, boolean useHarrisDetector) 
 - 
createpublic static GFTTDetector create(int maxCorners, double qualityLevel, double minDistance, int blockSize, int gradiantSize) 
 - 
setMaxFeaturespublic void setMaxFeatures(int maxFeatures) 
 - 
getMaxFeaturespublic int getMaxFeatures() 
 - 
setQualityLevelpublic void setQualityLevel(double qlevel) 
 - 
getQualityLevelpublic double getQualityLevel() 
 - 
setMinDistancepublic void setMinDistance(double minDistance) 
 - 
getMinDistancepublic double getMinDistance() 
 - 
setBlockSizepublic void setBlockSize(int blockSize) 
 - 
getBlockSizepublic int getBlockSize() 
 - 
setGradientSizepublic void setGradientSize(int gradientSize_) 
 - 
getGradientSizepublic int getGradientSize() 
 - 
setHarrisDetectorpublic void setHarrisDetector(boolean val) 
 - 
getHarrisDetectorpublic boolean getHarrisDetector() 
 - 
setKpublic void setK(double k) 
 - 
getKpublic double getK() 
 - 
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
 
 
- 
 
-