gpt4 book ai didi

python - 如何在 Python 3 中使用 OpenCV4 的 FastLineDetector?

转载 作者:太空宇宙 更新时间:2023-11-03 21:10:03 24 4
gpt4 key购买 nike

我试图在 Python 3 中使用 OpenCV4 库中的 FastLineDetector 来检测图像中的线条和线段,但似乎没有办法让它工作。我在这里阅读了文档:https://docs.opencv.org/3.4/df/d4c/classcv_1_1ximgproc_1_1FastLineDetector.html对我来说似乎还不清楚。我已经安装了 OpenCV 4.1.0,并且在 Ubuntu 18.0.4 中运行 Python 3.6。

这是我单独尝试过的代码:

img = cv2.imread('/tmp/output0.png', cv2.CV_8UC1)
fld = cv2.ximgproc_FastLineDetector.detect(img)
fld = cv2.ximgproc_FastLineDetector.detect(cv2.ximgproc_FastLineDetector(img))
fld.detect(img)

这里是输出错误:

fld = cv2.ximgproc_FastLineDetector.detect(img)
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: descriptor 'detect' requires a 'cv2.ximgproc_FastLineDetector' object but received a 'numpy.ndarray'
fld = cv2.ximgproc_FastLineDetector.detect(cv2.ximgproc_FastLineDetector(img))
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: Incorrect type of self (must be 'ximgproc_FastLineDetector' or its derivative)

有人知道如何使用 FastLineDetector 或有示例吗?

顺便问一下,与 cv.ximgproc.createFastLineDetector() 有什么区别吗?

最佳答案

给你

def FLD(image):
# Create default Fast Line Detector class
fld = cv2.ximgproc.createFastLineDetector()
# Get line vectors from the image
lines = fld.detect(image)
# Draw lines on the image
line_on_image = fld.drawSegments(image, lines)
# Plot
plt.imshow(line_on_image, interpolation='nearest', aspect='auto')
plt.show()
return line_on_image

关于python - 如何在 Python 3 中使用 OpenCV4 的 FastLineDetector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57017927/

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