opencv 直线检测
时间: 2023-10-11 11:12:09 浏览: 45
opencv直线检测
4星 · 用户满意度95%
您好!对于直线检测,可以使用OpenCV库中的Hough变换方法来实现。下面是一个基本的示例代码:
```python
import cv2
import numpy as np
# 读取图像
image = cv2.imread('image.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 进行边缘检测
edges = cv2.Canny(gray, 50, 150, apertureSize=3)
# 进行直线检测
lines = cv2.HoughLines(edges, 1, np.pi/180, threshold=100)
# 绘制检测到的直线
if lines is not None:
for line in lines:
rho, theta = line[0]
a = np.cos(theta)
b = np.sin(theta)
x0 = a * rho
y0 = b * rho
x1 = int(x0 + 1000 * (-b))
y1 = int(y0 + 1000 * (a))
x2 = int(x0 - 1000 * (-b))
y2 = int(y0 - 1000 * (a))
cv2.line(image, (x1, y1), (x2, y2), (0, 0, 255), 2)
# 显示结果图像
cv2.imshow('Line Detection', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
请确保安装了OpenCV库并且将图片路径替换为您自己的图片路径。这段代码将会对输入的图像进行直线检测,并在图像上标出检测到的直线。
希望能够帮到您!如果您还有其他问题,请随时提出。
阅读全文