#include <iostream>
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;
}
{
return -1;
}
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;
for (int run_count = 0; run_count < 5; run_count++) {
lines.clear();
fld->detect(image, lines);
double duration_ms = double(
getTickCount() - start) * 1000 / freq;
cout << "FLD 所用时间 " << duration_ms << " 毫秒。"span> << endl;
}
Mat line_image_fld(image);
fld->drawSegments(line_image_fld, lines);
imshow(
"FLD 结果", line_image_fld);
ed->params.GradientThresholdValue = 38;
ed->params.AnchorThresholdValue = 8;
vector<Vec6d> ellipses;
for (int run_count = 0; run_count < 5; run_count++) {
lines.clear();
ed->detectEdges(image);
ed->detectLines(lines);
double duration_ms = double(
getTickCount() - start) * 1000 / freq;
cout << "EdgeDrawing detectLines 所用时间 " << duration_ms << " 毫秒。"span> << endl;
ed->detectEllipses(ellipses);
cout << "EdgeDrawing detectEllipses 所用时间 " << duration_ms << " 毫秒。"span> << endl;
}
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]);
ellipse(line_image_ed, center, axes, angle, 0, 360, color, 2,
LINE_AA);
}
imshow(
"EdgeDrawing result", line_image_ed);
return 0;
}
用于命令行解析。
定义 utility.hpp:820
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 获取尺寸。
与磁盘上文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102