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

Class MSER

 object --+        
          |        
??.instance --+    
              |    
   CvMSERParams --+
                  |
                 MSER

Instance Methods [hide private]
 
__call__(...)
__call__( (MSER)inst, (Mat)image, (Mat)mask) -> object :
 
__init__(...)
__init__( (object)arg1) -> None :

Inherited from CvMSERParams: __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 CvMSERParams: __instance_size__

Properties [hide private]
  this

Inherited from CvMSERParams: areaThreshold, delta, edgeBlurSize, maxArea, maxEvolution, maxVariation, minArea, minDiversity, minMargin

Inherited from object: __class__

Method Details [hide private]

__call__(...)
(Call operator)

 

__call__( (MSER)inst, (Mat)image, (Mat)mask) -> object :
    
    Wrapped function:
        operator()
    Argument 'msers':
        C/C++ type: ::std::vector< std::vector< cv::Point_<int> > > &.
        Python type: list of Mat, e.g. [Mat(), Mat(), Mat()].
        Invoke asMat() to convert every 1D Python sequence into a Mat, e.g. 
        [asMat([0,1,2]), 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).

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

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (object)_delta, (object)_min_area, (object)_max_area, (object)_max_variation, (object)_min_diversity, (object)_max_evolution, (object)_area_threshold, (object)_min_margin, (object)_edge_blur_size) -> None :

    C++ signature :
        void __init__(_object*,int,int,int,float,float,int,double,double,int)

Overrides: object.__init__

Property Details [hide private]

this

Get Method:
unreachable(...)