直线检测算法的基类。: 更多...
#include <opencv2/cudaimgproc.hpp>
◆ detect()
使用经典霍夫变换在二值图像中查找直线。
- 参数
-
src | 8 位,单通道二值源图像。 |
lines | 直线输出向量。每条直线都由一个二维向量 \((\rho, \theta)\) 表示。\(\rho\) 是从坐标原点 \((0,0)\)(图像的左上角)到直线的距离。\(\theta\) 是直线相对于水平方向的旋转角度,以弧度表示(\(0 \sim \textrm{竖直线}, \pi/2 \sim \textrm{水平线}\))。 |
stream | Stream 用于异步版本。 |
- 另请参阅
- 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 | ) |
|
|
纯虚函数 |
此类的文档从以下文件生成