Package pyopencv :: Module pyopencvext :: Class SURF
[hide private]
[frames] | no frames]

Class SURF

 object --+        
          |        
??.instance --+    
              |    
   CvSURFParams --+
                  |
                 SURF

Instance Methods [hide private]
 
__call__(...)
__call__( (SURF)inst, (Mat)img, (Mat)mask) -> object :
 
__init__(...)
__init__( (object)arg1) -> None :
 
descriptorSize(...)
descriptorSize( (SURF)arg1) -> int :

Inherited from CvSURFParams: __reduce__

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from CvSURFParams: __instance_size__

Properties [hide private]
  this

Inherited from CvSURFParams: extended, hessianThreshold, nOctaveLayers, nOctaves

Inherited from object: __class__

Method Details [hide private]

__call__(...)
(Call operator)

 

__call__( (SURF)inst, (Mat)img, (Mat)mask) -> object :
    
    Wrapped function:
        operator()
    Argument 'keypoints':
        C/C++ type: ::std::vector< cv::KeyPoint > &.
        Python type: list.
        To convert a Mat into a list, invoke one of Mat's member functions 
        to_list_of_...().
        Output argument: omitted from the function's calling sequence, and is 
        returned along with the function's return value (if any).

    C++ signature :
        boost::python::api::object __call__(cv::SURF,cv::Mat,cv::Mat)

__call__( (SURF)inst, (Mat)img, (Mat)mask, (list)keypoints [, (bool)useProvidedKeypoints=False]) -> object :
    
    Wrapped function:
        operator()
    Argument 'descriptors':
        C/C++ type: ::std::vector< float > &.
        Python type: Mat.
        Invoke asMat() to convert a 1D Python sequence into a Mat, e.g. 
        asMat([0,1,2]) or asMat((0,1,2)).
        Output argument: omitted from the function's calling sequence, and is 
        returned along with the function's return value (if any).
    Argument 'keypoints':
        C/C++ type: ::std::vector< cv::KeyPoint > &.
        Python type: list.
        To convert a Mat into a list, invoke one of Mat's member functions 
        to_list_of_...().

    C++ signature :
        boost::python::api::object __call__(cv::SURF,cv::Mat,cv::Mat,boost::python::list {lvalue} [,bool=False])

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (object)_hessianThreshold [, (object)_nOctaves=4 [, (object)_nOctaveLayers=2 [, (bool)_extended=False]]]) -> None :

    C++ signature :
        void __init__(_object*,double [,int=4 [,int=2 [,bool=False]]])

Overrides: object.__init__

descriptorSize(...)

 

descriptorSize( (SURF)arg1) -> int :

    C++ signature :
        int descriptorSize(cv::SURF {lvalue})


Property Details [hide private]

this

Get Method:
unreachable(...)