- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有彩色图像,应该使用opencv LineSegmentDetector算法来检测图像中矩形的线
这是我的图片:
我正在使用此代码:
import cv2
img = cv2.imread("rectangles.jpg",0)
#Create default parametrization LSD
lsd = cv2.createLineSegmentDetector(0)
#Detect lines in the image
lines = lsd.detect(img)[0]
#Draw detected lines in the image
drawn_img = lsd.drawSegments(img,lines)
#Show image
cv2.imshow("LSD",drawn_img )
cv2.waitKey(0)
<ipython-input-18-93ae667b0648> in <module>()
3
4 #Create default parametrization LSD
----> 5 lsd = cv2.createLineSegmentDetector(0)
6
7 #Detect lines in the image
error: OpenCV(4.1.0) C:\projects\opencv-python\opencv\modules\imgproc\src\lsd.cpp:143: error: (-213:The function/feature is not implemented) Implementation has been removed due original code license issues in function 'cv::LineSegmentDetectorImpl::LineSegmentDetectorImpl'
最佳答案
您是否阅读了错误消息?
error: OpenCV(4.1.0) C:\projects\opencv-python\opencv\modules\imgproc\src\lsd.cpp:143: error: (-213:The function/feature is not implemented)
Implementation has been removed due original code license issues in function 'cv::LineSegmentDetectorImpl::LineSegmentDetectorImpl'
关于python-3.x - 使用opencv LineSegmentDetector查找图像的线条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56389167/
我正在使用 LSD 检测图像中的直线,我下载的代码包含调用 LSD 的最小示例,但它是静态的(即它仅输出主函数中的值)我想应用代码在视频中,这是输出静态结果的最小示例。 #include #incl
我想使用 LineSegmentDetector of OpenCV 3在Java中。不幸的是,它似乎不属于 javacpp opencv 发行版的一部分。在java中使用这个算法的最快方法是什么?
是否可以提供示例实现代码或指针以使用 opencv 3.0 和 python 实现 LSD? HoughLines 和 HoughLinesP 在 python 中没有给出想要的结果,想在 pytho
我是一名优秀的程序员,十分优秀!