Base class for line segments detector algorithm. :  
 More...
#include <opencv2/cudaimgproc.hpp>
Base class for line segments detector algorithm. : 
Finds line segments in a binary image using the probabilistic Hough transform. 
- Parameters
- 
  
    | src | 8-bit, single-channel binary source image. |  | lines | Output vector of lines. Each line is represented by a 4-element vector \((x_1, y_1, x_2, y_2)\) , where \((x_1,y_1)\) and \((x_2, y_2)\) are the ending points of each detected line segment. |  | stream | Stream for the asynchronous version. |  
 
- See Also
- HoughLinesP 
 
 
  
  | 
        
          | virtual int cv::cuda::HoughSegmentDetector::getMaxLineGap | ( |  | ) | const |  | pure virtual | 
 
 
  
  | 
        
          | virtual int cv::cuda::HoughSegmentDetector::getMaxLines | ( |  | ) | const |  | pure virtual | 
 
 
  
  | 
        
          | virtual int cv::cuda::HoughSegmentDetector::getMinLineLength | ( |  | ) | const |  | pure virtual | 
 
 
  
  | 
        
          | virtual float cv::cuda::HoughSegmentDetector::getRho | ( |  | ) | const |  | pure virtual | 
 
 
  
  | 
        
          | virtual float cv::cuda::HoughSegmentDetector::getTheta | ( |  | ) | const |  | pure virtual | 
 
 
  
  | 
        
          | virtual void cv::cuda::HoughSegmentDetector::setMaxLineGap | ( | int | maxLineGap | ) |  |  | pure virtual | 
 
 
  
  | 
        
          | virtual void cv::cuda::HoughSegmentDetector::setMaxLines | ( | int | maxLines | ) |  |  | pure virtual | 
 
 
  
  | 
        
          | virtual void cv::cuda::HoughSegmentDetector::setMinLineLength | ( | int | minLineLength | ) |  |  | pure virtual | 
 
 
  
  | 
        
          | virtual void cv::cuda::HoughSegmentDetector::setRho | ( | float | rho | ) |  |  | pure virtual | 
 
 
  
  | 
        
          | virtual void cv::cuda::HoughSegmentDetector::setTheta | ( | float | theta | ) |  |  | pure virtual | 
 
 
The documentation for this class was generated from the following file: