Package org.opencv.xfeatures2d
Class SURF
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.features2d.Feature2D
- 
- org.opencv.xfeatures2d.SURF
 
 
 
- 
 public class SURF extends Feature2D Class for extracting Speeded Up Robust Features from an image CITE: Bay06 . The algorithm parameters:- 
    member int extended
   - 0 means that the basic descriptors (64 elements each) shall be computed
- 1 means that the extended descriptors (128 elements each) shall be computed
 
- 
    member int upright
   - 0 means that detector computes orientation of each feature.
- 1 means that the orientation is not computed (which is much, much faster). For example, if you match images from a stereo pair, or do image stitching, the matched features likely have very similar angles, and you can speed up feature extraction by setting upright=1.
 
- member double hessianThreshold Threshold for the keypoint detector. Only features, whose hessian is larger than hessianThreshold are retained by the detector. Therefore, the larger the value, the less keypoints you will get. A good default value could be from 300 to 500, depending from the image contrast.
- member int nOctaves The number of a gaussian pyramid octaves that the detector uses. It is set to 4 by default. If you want to get very large features, use the larger value. If you want just small features, decrease it.
- member int nOctaveLayers The number of images within each octave of a gaussian pyramid. It is set to 2 by default.
 - 
       An example using the SURF feature detector can be found at
         opencv_source_code/samples/cpp/generic_descriptor_match.cpp
   - Another example using the SURF feature detector, extractor and matcher can be found at opencv_source_code/samples/cpp/matcher_simple.cpp
 
 
- 
    member int extended
   
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedSURF(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SURF__fromPtr__(long addr)static SURFcreate()64-element descriptors).static SURFcreate(double hessianThreshold)static SURFcreate(double hessianThreshold, int nOctaves)static SURFcreate(double hessianThreshold, int nOctaves, int nOctaveLayers)static SURFcreate(double hessianThreshold, int nOctaves, int nOctaveLayers, boolean extended)static SURFcreate(double hessianThreshold, int nOctaves, int nOctaveLayers, boolean extended, boolean upright)protected voidfinalize()booleangetExtended()doublegetHessianThreshold()intgetNOctaveLayers()intgetNOctaves()booleangetUpright()voidsetExtended(boolean extended)voidsetHessianThreshold(double hessianThreshold)voidsetNOctaveLayers(int nOctaveLayers)voidsetNOctaves(int nOctaves)voidsetUpright(boolean upright)- 
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 SURF __fromPtr__(long addr) 
 - 
createpublic static SURF create(double hessianThreshold, int nOctaves, int nOctaveLayers, boolean extended, boolean upright) - Parameters:
- hessianThreshold- Threshold for hessian keypoint detector used in SURF.
- nOctaves- Number of pyramid octaves the keypoint detector will use.
- nOctaveLayers- Number of octave layers within each octave.
- extended- Extended descriptor flag (true - use extended 128-element descriptors; false - use 64-element descriptors).
- upright- Up-right or rotated features flag (true - do not compute orientation of features; false - compute orientation).
- Returns:
- automatically generated
 
 - 
createpublic static SURF create(double hessianThreshold, int nOctaves, int nOctaveLayers, boolean extended) - Parameters:
- hessianThreshold- Threshold for hessian keypoint detector used in SURF.
- nOctaves- Number of pyramid octaves the keypoint detector will use.
- nOctaveLayers- Number of octave layers within each octave.
- extended- Extended descriptor flag (true - use extended 128-element descriptors; false - use 64-element descriptors). false - compute orientation).
- Returns:
- automatically generated
 
 - 
createpublic static SURF create(double hessianThreshold, int nOctaves, int nOctaveLayers) - Parameters:
- hessianThreshold- Threshold for hessian keypoint detector used in SURF.
- nOctaves- Number of pyramid octaves the keypoint detector will use.
- nOctaveLayers- Number of octave layers within each octave. 64-element descriptors). false - compute orientation).
- Returns:
- automatically generated
 
 - 
createpublic static SURF create(double hessianThreshold, int nOctaves) - Parameters:
- hessianThreshold- Threshold for hessian keypoint detector used in SURF.
- nOctaves- Number of pyramid octaves the keypoint detector will use. 64-element descriptors). false - compute orientation).
- Returns:
- automatically generated
 
 - 
createpublic static SURF create(double hessianThreshold) - Parameters:
- hessianThreshold- Threshold for hessian keypoint detector used in SURF. 64-element descriptors). false - compute orientation).
- Returns:
- automatically generated
 
 - 
createpublic static SURF create() 64-element descriptors). false - compute orientation).- Returns:
- automatically generated
 
 - 
setHessianThresholdpublic void setHessianThreshold(double hessianThreshold) 
 - 
getHessianThresholdpublic double getHessianThreshold() 
 - 
setNOctavespublic void setNOctaves(int nOctaves) 
 - 
getNOctavespublic int getNOctaves() 
 - 
setNOctaveLayerspublic void setNOctaveLayers(int nOctaveLayers) 
 - 
getNOctaveLayerspublic int getNOctaveLayers() 
 - 
setExtendedpublic void setExtended(boolean extended) 
 - 
getExtendedpublic boolean getExtended() 
 - 
setUprightpublic void setUpright(boolean upright) 
 - 
getUprightpublic boolean getUpright() 
 
- 
 
-