gpt4 book ai didi

opencv - 如何使用 OpenCV 确定 HoughLines 函数找到的线的角度?

转载 作者:太空宇宙 更新时间:2023-11-03 20:55:57 25 4
gpt4 key购买 nike

使用 OpenCV 中的 HoughLines 函数,是否可以确定生成的直线相对于图像底部的角度?

最佳答案

如果您使用 HoughLines 函数,它将为您提供已经由两个参数定义的线:theta 和 rho,如

vector<Vec2f> lines;
// detect lines
HoughLines(image, lines, 1, CV_PI/180, 150, 0, 0 );

// get lines
for( size_t i = 0; i < lines.size(); i++ )
{
float rho = lines[i][0], theta = lines[i][1];
....
}

或者如果你应用 HoughLinesP 函数,你将得到由两点定义的线,你只需要计算两点之间的线相对于图像的角度,如:

vector<Vec4i> lines;
// detect the lines
HoughLinesP(image, lines, 1, CV_PI/180, 50, 50, 10 );
for( size_t i = 0; i < lines.size(); i++ )
{
Vec4i l = lines[i];
// draw the lines

Point p1, p2;
p1=Point(l[0], l[1]);
p2=Point(l[2], l[3]);
//calculate angle in radian, if you need it in degrees just do angle * 180 / PI
float angle = atan2(p1.y - p2.y, p1.x - p2.x);
.......
}

关于opencv - 如何使用 OpenCV 确定 HoughLines 函数找到的线的角度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24031701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com