直线检测算法的基类。: 更多…
#include <opencv2/cudaimgproc.hpp>
◆ detect()
使用经典霍夫变换查找二值图像中的直线。
- 参数
-
src | 8 位,单通道二值源图像。 |
lines | 输出直线向量。每条直线由一个二元素向量 \((\rho, \theta)\) 表示。\(\rho\) 是从坐标原点 \((0,0)\)(图像左上角)的距离。\(\theta\) 是直线旋转角度(以弧度为单位)(\(0 \sim \textrm{垂直线}, \pi/2 \sim \textrm{水平线}\))。 |
流 | 异步版本的流。 |
- 另请参阅
- HoughLines
◆ downloadResults()
◆ getDoSort()
virtual bool cv::cuda::HoughLinesDetector::getDoSort |
( |
| ) |
const |
|
纯虚函数 |
◆ getMaxLines()
virtual int cv::cuda::HoughLinesDetector::getMaxLines |
( |
| ) |
const |
|
纯虚函数 |
◆ getRho()
virtual float cv::cuda::HoughLinesDetector::getRho |
( |
| ) |
const |
|
纯虚函数 |
◆ getTheta()
virtual float cv::cuda::HoughLinesDetector::getTheta |
( |
| ) |
const |
|
纯虚函数 |
◆ getThreshold()
virtual int cv::cuda::HoughLinesDetector::getThreshold |
( |
| ) |
const |
|
纯虚函数 |
◆ setDoSort()
virtual void cv::cuda::HoughLinesDetector::setDoSort |
( |
bool | doSort | ) |
|
|
纯虚函数 |
◆ setMaxLines()
virtual void cv::cuda::HoughLinesDetector::setMaxLines |
( |
int | maxLines | ) |
|
|
纯虚函数 |
◆ setRho()
virtual void cv::cuda::HoughLinesDetector::setRho |
( |
float | rho | ) |
|
|
纯虚函数 |
◆ setTheta()
virtual void cv::cuda::HoughLinesDetector::setTheta |
( |
float | theta | ) |
|
|
纯虚函数 |
◆ setThreshold()
virtual void cv::cuda::HoughLinesDetector::setThreshold |
( |
int | threshold | ) |
|
|
纯虚函数 |
此类的文档是从以下文件生成的