Strategie for the selective search segmentation algorithm The class implements a generic stragery for the algorithm described in [209].  
 More...
#include <opencv2/ximgproc/segmentation.hpp>
Strategie for the selective search segmentation algorithm The class implements a generic stragery for the algorithm described in [209]. 
 
◆ get()
  
  
      
        
          | virtual float cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy::get  | 
          ( | 
          int  | 
          r1,  | 
         
        
           | 
           | 
          int  | 
          r2  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
pure virtual   | 
  
| Python: | 
|---|
 | retval | = | cv.ximgproc_segmentation_SelectiveSearchSegmentationStrategy.get( | r1, r2 | ) | 
 
Return the score between two regions (between 0 and 1) 
- Parameters
 - 
  
    | r1 | The first region  | 
    | r2 | The second region  | 
  
   
 
 
◆ merge()
  
  
      
        
          | virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy::merge  | 
          ( | 
          int  | 
          r1,  | 
         
        
           | 
           | 
          int  | 
          r2  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
pure virtual   | 
  
| Python: | 
|---|
 | None | = | cv.ximgproc_segmentation_SelectiveSearchSegmentationStrategy.merge( | r1, r2 | ) | 
 
Inform the strategy that two regions will be merged. 
- Parameters
 - 
  
    | r1 | The first region  | 
    | r2 | The second region  | 
  
   
 
 
◆ setImage()
  
  
      
        
          | virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy::setImage  | 
          ( | 
          InputArray  | 
          img,  | 
         
        
           | 
           | 
          InputArray  | 
          regions,  | 
         
        
           | 
           | 
          InputArray  | 
          sizes,  | 
         
        
           | 
           | 
          int  | 
          image_id = -1  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
pure virtual   | 
  
| Python: | 
|---|
 | None | = | cv.ximgproc_segmentation_SelectiveSearchSegmentationStrategy.setImage( | img, regions, sizes[, image_id] | ) | 
 
Set a initial image, with a segmentation. 
- Parameters
 - 
  
    | img | The input image. Any number of channel can be provided  | 
    | regions | A segmentation of the image. The parameter must be the same size of img.  | 
    | sizes | The sizes of different regions  | 
    | image_id | If not set to -1, try to cache pre-computations. If the same set og (img, regions, size) is used, the image_id need to be the same.  | 
  
   
 
 
The documentation for this class was generated from the following file: