Canny 边缘检测器的基类。 : 更多...
#include <opencv2/cudaimgproc.hpp>
◆ detect() [1/2]
这是一个重载的成员函数,为了方便使用。它与上面的函数的区别仅在于它接受的参数。
- 参数
-
dx | 图像在垂直方向上的 一阶导数。仅支持 CV_32S 类型。 |
dy | 图像在水平方向上的 一阶导数。仅支持 CV_32S 类型。 |
edges | 输出边缘图。它与图像具有相同的尺寸和类型。 |
stream | 异步版本的 Stream。 |
◆ detect() [2/2]
使用 [48] 算法查找图像中的边缘。
- 参数
-
image | 单通道 8 位输入图像。 |
edges | 输出边缘图。它与图像具有相同的尺寸和类型。 |
stream | 异步版本的 Stream。 |
◆ getAppertureSize()
virtual int cv::cuda::CannyEdgeDetector::getAppertureSize |
( |
| ) |
const |
|
纯虚函数 |
◆ getHighThreshold()
virtual double cv::cuda::CannyEdgeDetector::getHighThreshold |
( |
| ) |
const |
|
纯虚函数 |
◆ getL2Gradient()
virtual bool cv::cuda::CannyEdgeDetector::getL2Gradient |
( |
| ) |
const |
|
纯虚函数 |
◆ getLowThreshold()
virtual double cv::cuda::CannyEdgeDetector::getLowThreshold |
( |
| ) |
const |
|
纯虚函数 |
◆ setAppertureSize()
virtual void cv::cuda::CannyEdgeDetector::setAppertureSize |
( |
int |
apperture_size | ) |
|
|
纯虚函数 |
◆ setHighThreshold()
virtual void cv::cuda::CannyEdgeDetector::setHighThreshold |
( |
double |
high_thresh | ) |
|
|
纯虚函数 |
◆ setL2Gradient()
virtual void cv::cuda::CannyEdgeDetector::setL2Gradient |
( |
bool |
L2gradient | ) |
|
|
纯虚函数 |
◆ setLowThreshold()
virtual void cv::cuda::CannyEdgeDetector::setLowThreshold |
( |
double |
low_thresh | ) |
|
|
纯虚函数 |
该类的文档是从以下文件生成的