__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])
|