OpenCV  4.10.0
开源计算机视觉
加载...
搜索中...
无匹配项
公用成员函数 | 所有成员列表
cv::ximgproc::FastLineDetector 类参考抽象

实现 FLD(快速线条检测器)算法的类,该算法在 [155] 中有所描述。 更多...

#include <opencv2/ximgproc/fast_line_detector.hpp>

cv::ximgproc::FastLineDetector 的协作图

公用成员函数

virtual ~FastLineDetector ()
 
virtual void detect (InputArray image, OutputArray lines)=0
 找出输入图像中的线条。这是算法在上述所示图像上使用默认参数的输出。
 
virtual void drawSegments (InputOutputArray image, InputArray lines, bool draw_arrow=false, Scalar linecolor=Scalar(0, 0, 255), int linethickness=1)=0
 在给定图像上绘制线段。
 
- 从 cv::Algorithm 继承的公用成员函数
 算法 ()
 
virtual ~Algorithm ()
 
virtual void 清除 ()
 清除算法状态。
 
virtual bool empty () const
 如果 算法 为空(例如在开头或读取不成功之后),则返回 true。
 
virtual String getDefaultName () const
 
virtual void read (const FileNode &fn)
 从文件存储中读取算法参数。
 
virtual void save (const String &filename) const
 
void 写入 (const Ptr< 文件存储器 > &fs, const 字符串 &名称=字符串()) const
 
virtual void 写入 (文件存储器 &fs) const
 在文件存储器中存储算法参数。
 
void 写入 (文件存储器 &fs, const 字符串 &名称) const
 

cv::Algorithm 继承的附加成员

- 静态公共成员函数从 cv::Algorithm 继承
template<typename _Tp >
static Ptr< _Tp加载 (const 字符串 &文件名, const 字符串 &对象名称=字符串())
 从文件中加载算法。
 
template<typename _Tp >
static Ptr< _Tp从字符串加载 (const 字符串 &strModel, const 字符串 &对象名称=字符串())
 从字符串加载算法。
 
template<typename _Tp >
static Ptr< _Tp读取 (const 文件节点 &fn)
 从文件节点中读取算法。
 
- 受保护的成员函数从 cv::Algorithm 继承
void 写入格式 (文件存储器 &fs) const
 

详细信息

实现了 FLD(快速线检测器)算法的类,[155] 中有介绍。

#include <iostream>
using namespace std;
using namespace cv;
int main(int argc, char** argv)
{
string in;
CommandLineParser parser(argc, argv, "{@input|corridor.jpg|input image}{help h||show help message}");
if (parser.has("help"))
{
parser.printMessage();
return 0;
}
in = samples::findFile(parser.get<string>("@input"));
Mat image = imread(in, IMREAD_GRAYSCALE);
if( image.empty() )
{
return -1;
}
// Create FLD detector
// Param Default value Description
// length_threshold 10 - Segments shorter than this will be discarded
// distance_threshold 1.41421356 - A point placed from a hypothesis line
// segment farther than this will be
// regarded as an outlier
// canny_th1 50 - First threshold for
// hysteresis procedure in Canny()
// canny_th2 50 - Second threshold for
// hysteresis procedure in Canny()
// canny_aperture_size 3 - Aperturesize for the sobel operator in Canny().
// If zero, Canny() is not applied and the input
// image is taken as an edge image.
// do_merge false - If true, incremental merging of segments
// will be performed
int length_threshold = 10;
float distance_threshold = 1.41421356f;
double canny_th1 = 50.0;
double canny_th2 = 50.0;
int canny_aperture_size = 3;
bool do_merge = false;
distance_threshold, canny_th1, canny_th2, canny_aperture_size,
do_merge);
vector<Vec4f> lines;
// Because of some CPU's power strategy, it seems that the first running of
// an algorithm takes much longer. So here we run the algorithm 10 times
// to see the algorithm's processing time with sufficiently warmed-up
// CPU performance.
for (int run_count = 0; run_count < 5; run_count++) {
double freq = getTickFrequency();
lines.clear();
int64 start = getTickCount();
// 检测具有场定位线的线
fld->detect(image, lines);
double duration_ms = double(getTickCount() - start) * 1000 / freq;
cout << "FLD 所用时间 " << duration_ms << " 毫秒。"span> << endl;
}
// 显示发现具有 FLD 的线
Mat line_image_fld(image);
fld->drawSegments(line_image_fld, lines);
imshow("FLD 结果", line_image_fld);
waitKey(1);
ed->params.EdgeDetectionOperator = EdgeDrawing::SOBEL;
ed->params.GradientThresholdValue = 38;
ed->params.AnchorThresholdValue = 8;
vector<Vec6d> ellipses;
for (int run_count = 0; run_count < 5; run_count++) {
double freq = getTickFrequency();
lines.clear();
int64 start = getTickCount();
// 检测边缘
// 在 detectLines() 和 detectEllipses() 之前调用此函数
ed->detectEdges(image);
// 检测线
ed->detectLines(lines);
double duration_ms = double(getTickCount() - start) * 1000 / freq;
cout << "EdgeDrawing detectLines 所用时间 " << duration_ms << " 毫秒。"span> << endl;
start = getTickCount();
// 检测圆和椭圆
ed->detectEllipses(ellipses);
duration_ms = double(getTickCount() - start) * 1000 / freq;
cout << "EdgeDrawing detectEllipses 所用时间 " << duration_ms << " 毫秒。"span> << endl;
}
Mat edge_image_ed = Mat::zeros(image.size(), CV_8UC3);
vector<vector<Point> > segments = ed->getSegments();
for (size_t i = 0; i < segments.size(); i++)
{
const Point* pts = &segments[i][0];
int n = (int)segments[i].size();
polylines(edge_image_ed, &pts, &n, 1, false, Scalar((rand() & 255), (rand() & 255), (rand() & 255)), 1);
}
imshow("EdgeDrawing detected edges", edge_image_ed);
Mat line_image_ed(image);
fld->drawSegments(line_image_ed, lines);
// 绘制圆形和椭圆形
for (size_t i = 0; i < ellipses.size(); i++)
{
Point center((int)ellipses[i][0], (int)ellipses[i][1]);
Size axes((int)ellipses[i][2] + (int)ellipses[i][3], (int)ellipses[i][2] + (int)ellipses[i][4]);
double angle(ellipses[i][5]);
Scalar color = ellipses[i][2] == 0 ? Scalar(255, 255, 0) : Scalar(0, 255, 0);
ellipse(line_image_ed, center, axes, angle, 0, 360, color, 2, LINE_AA);
}
imshow("EdgeDrawing result", line_image_ed);
return 0;
}
用于命令行解析。
定义 utility.hpp:820
n 维度稠密数组类
定义 mat.hpp:812
MatSize size
定义 mat.hpp:2160
static CV_NODISCARD_STD MatExpr zeros(int rows, int cols, int type)
返回指定大小和类型的零数组。
bool empty() const
如果数组没有元素,则返回 true。
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
@ SOBEL
定义 edge_drawing.hpp:28
Scalar_< double > Scalar
定义 types.hpp:702
std::shared_ptr< _Tp > Ptr
定义 cvstd_wrapper.hpp:23
int64_t int64
定义 interface.h:61
#define CV_8UC3
定义 interface.h:90
cv::String findFile(const cv::String &relative_path, bool required=true, bool silentMode=false)
尝试查找请求的数据文件。
double getTickFrequency()
返回每秒钟刻度数。
int64 getTickCount()
返回计时器计时次数。
void imshow(const String &winname, InputArray mat)
在指定的窗口中显示图像。
int waitKey(int delay=0)
等待按下的键盘。
@ IMREAD_GRAYSCALE
如果设置,则始终将图像转换为单通道灰度图像(内部图像转换)。
定义 imgcodecs.hpp:70
CV_EXPORTS_W Mat imread(const String &filename, int flags=IMREAD_COLOR)
从文件中加载图像。
void ellipse(InputOutputArray img, Point center, Size axes, double angle, double startAngle, double endAngle, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制简单或较粗的椭圆弧或填充椭圆扇形。
void polylines(InputOutputArray img, InputArrayOfArrays pts, bool isClosed, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制多条多边形曲线。
@ LINE_AA
抗混叠线
定义 imgproc.hpp:894
Ptr< EdgeDrawing > createEdgeDrawing()
创建智能指针指向 EdgeDrawing 对象并进行初始化。
Ptr< FastLineDetector > createFastLineDetector(int length_threshold=10, float distance_threshold=1.414213562f, double canny_th1=50.0, double canny_th2=50.0, int canny_aperture_size=3, bool do_merge=false)
创建智能指针指向 FastLineDetector 对象并进行初始化。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
GOpaque< Size > size(const GMat &src)
从 Mat 获取尺寸。
定义 ximgproc.hpp:125
与磁盘上文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102
STL 命名空间。

构造函数和析构函数文档

◆ ~FastLineDetector()

virtual cv::ximgproc::FastLineDetector::~FastLineDetector ( )
inlinevirtual

成员函数文档

◆ detect()

virtual void cv::ximgproc::FastLineDetector::detect ( InputArray  image,
OutputArray  lines 
)
纯虚函数
Python
cv.ximgproc.FastLineDetector.detect(image[, lines]) -> lines

找出输入图像中的线条。这是算法在上述所示图像上使用默认参数的输出。

image
参数
image灰度(CV_8UC1)输入图像。如果仅需要选择一个 roi,则使用:fld_ptr-\>detect(image(roi), lines, ...); lines += Scalar(roi.x, roi.y, roi.x, roi.y);
lines指定了线的起点和终点的 Vec4f 元素向量。其中 Vec4f 为 (x1, y1, x2, y2),point 1 为开始,point 2 为结束。返回的线是有向的,这样较亮的边在它们左侧。

◆ drawSegments()

virtual void cv::ximgproc::FastLineDetector::drawSegments ( InputOutputArray  image,
InputArray  lines,
bool  draw_arrow = false,
Scalar  linecolor = Scalar(0, 0, 255),
int  linethickness = 1 
)
纯虚函数
Python
cv.ximgproc.FastLineDetector.drawSegments(image, lines[, draw_arrow[, linecolor[, linethickness]]]) -> image

在给定图像上绘制线段。

参数
image要绘制线的图像。应大于或等于发现线的图像。
lines需要绘制的线的向量。
draw_arrow如果为真,将绘制箭头头。
linecolor线颜色。
linethickness线粗细。

此类的文档是从以下文件生成的