Package org.opencv.xfeatures2d
Class HarrisLaplaceFeatureDetector
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.xfeatures2d.HarrisLaplaceFeatureDetector
 
 
 
- 
 public class HarrisLaplaceFeatureDetector extends Feature2D Class implementing the Harris-Laplace feature detector as described in CITE: Mikolajczyk2004.
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedHarrisLaplaceFeatureDetector(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HarrisLaplaceFeatureDetector__fromPtr__(long addr)static HarrisLaplaceFeatureDetectorcreate()Creates a new implementation instance.static HarrisLaplaceFeatureDetectorcreate(int numOctaves)Creates a new implementation instance.static HarrisLaplaceFeatureDetectorcreate(int numOctaves, float corn_thresh)Creates a new implementation instance.static HarrisLaplaceFeatureDetectorcreate(int numOctaves, float corn_thresh, float DOG_thresh)Creates a new implementation instance.static HarrisLaplaceFeatureDetectorcreate(int numOctaves, float corn_thresh, float DOG_thresh, int maxCorners)Creates a new implementation instance.static HarrisLaplaceFeatureDetectorcreate(int numOctaves, float corn_thresh, float DOG_thresh, int maxCorners, int num_layers)Creates a new implementation instance.protected voidfinalize()- 
Methods inherited from class org.opencv.features2d.Feature2Dcompute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, getDefaultName, read, write
 - 
Methods inherited from class org.opencv.core.Algorithmclear, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static HarrisLaplaceFeatureDetector __fromPtr__(long addr) 
 - 
createpublic static HarrisLaplaceFeatureDetector create(int numOctaves, float corn_thresh, float DOG_thresh, int maxCorners, int num_layers) Creates a new implementation instance.- Parameters:
- numOctaves- the number of octaves in the scale-space pyramid
- corn_thresh- the threshold for the Harris cornerness measure
- DOG_thresh- the threshold for the Difference-of-Gaussians scale selection
- maxCorners- the maximum number of corners to consider
- num_layers- the number of intermediate scales per octave
- Returns:
- automatically generated
 
 - 
createpublic static HarrisLaplaceFeatureDetector create(int numOctaves, float corn_thresh, float DOG_thresh, int maxCorners) Creates a new implementation instance.- Parameters:
- numOctaves- the number of octaves in the scale-space pyramid
- corn_thresh- the threshold for the Harris cornerness measure
- DOG_thresh- the threshold for the Difference-of-Gaussians scale selection
- maxCorners- the maximum number of corners to consider
- Returns:
- automatically generated
 
 - 
createpublic static HarrisLaplaceFeatureDetector create(int numOctaves, float corn_thresh, float DOG_thresh) Creates a new implementation instance.- Parameters:
- numOctaves- the number of octaves in the scale-space pyramid
- corn_thresh- the threshold for the Harris cornerness measure
- DOG_thresh- the threshold for the Difference-of-Gaussians scale selection
- Returns:
- automatically generated
 
 - 
createpublic static HarrisLaplaceFeatureDetector create(int numOctaves, float corn_thresh) Creates a new implementation instance.- Parameters:
- numOctaves- the number of octaves in the scale-space pyramid
- corn_thresh- the threshold for the Harris cornerness measure
- Returns:
- automatically generated
 
 - 
createpublic static HarrisLaplaceFeatureDetector create(int numOctaves) Creates a new implementation instance.- Parameters:
- numOctaves- the number of octaves in the scale-space pyramid
- Returns:
- automatically generated
 
 - 
createpublic static HarrisLaplaceFeatureDetector create() Creates a new implementation instance.- Returns:
- automatically generated
 
 
- 
 
-