gpt4 book ai didi

python-2.7 - 使用 Python 的 Opencv 3 中的 LineSegmentDetector

转载 作者:行者123 更新时间:2023-12-03 16:45:55 27 4
gpt4 key购买 nike

是否可以提供示例实现代码或指针以使用 opencv 3.0 和 python 实现 LSD? HoughLines 和 HoughLinesP 在 python 中没有给出想要的结果,想在 python 中测试 LSD,但没有得到任何结果。

我尝试执行以下操作:
LSD=cv2.createLineSegmentDetector(0)
lines_std=LSD.detect(mixChl)
LSD.drawSegments(mask,lines_std)

但是,当我在蒙版上画线时,我收到一个错误:
LSD.drawSegments(mask,lines_std) TypeError:lines 不是数字元组

有人可以帮我解决这个问题吗?
提前致谢。

最佳答案

您可以像这样使用 cv2.drawSegments 函数:

#Read gray image
img = cv2.imread("test.png",0)

#Create default parametrization LSD
lsd = cv2.createLineSegmentDetector(0)

#Detect lines in the image
lines = lsd.detect(img)[0] #Position 0 of the returned tuple are the detected lines

#Draw detected lines in the image
drawn_img = lsd.drawSegments(img,lines)

#Show image
cv2.imshow("LSD",drawn_img )
cv2.waitKey(0)

您可以查看 OpenCV documentation .

关于python-2.7 - 使用 Python 的 Opencv 3 中的 LineSegmentDetector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41329665/

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