feature2d.patch

feature2d patch using bool _upright=false - Yvonnic MM, 2011-06-07 04:05 pm

Download (775 Bytes)

 
opencv2/features2d/features2d.hpp (copie de travail)
81 81
typedef struct CvSURFParams
82 82
{
83 83
    int    extended;
84
    int    upright;
84 85
    double hessianThreshold;
85 86

  
86 87
    int    nOctaves;
......
395 396
    CV_WRAP SURF();
396 397
    //! the full constructor taking all the necessary parameters
397 398
    CV_WRAP SURF(double _hessianThreshold, int _nOctaves=4,
398
         int _nOctaveLayers=2, bool _extended=false);
399
         int _nOctaveLayers=2, bool _extended=false, bool _upright=false);
399 400

  
400 401
    //! returns the descriptor size in float's (64 or 128)
401 402
    CV_WRAP int descriptorSize() const;