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.booleangetHarrisDetector()doublegetK()intgetMaxFeatures()doublegetMinDistance()doublegetQualityLevel()voidsetBlockSize(int blockSize)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, 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) 
 - 
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() 
 - 
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
 
 - 
getHarrisDetectorpublic boolean getHarrisDetector() 
 - 
getKpublic double getK() 
 - 
getMinDistancepublic double getMinDistance() 
 - 
getQualityLevelpublic double getQualityLevel() 
 - 
getBlockSizepublic int getBlockSize() 
 - 
getMaxFeaturespublic int getMaxFeatures() 
 - 
setBlockSizepublic void setBlockSize(int blockSize) 
 - 
setHarrisDetectorpublic void setHarrisDetector(boolean val) 
 - 
setKpublic void setK(double k) 
 - 
setMaxFeaturespublic void setMaxFeatures(int maxFeatures) 
 - 
setMinDistancepublic void setMinDistance(double minDistance) 
 - 
setQualityLevelpublic void setQualityLevel(double qlevel) 
 
- 
 
-