python opencv检测线
时间: 2023-10-21 13:07:08 浏览: 74
Python+OpenCV人脸检测原理及示例详解.pdf
您可以使用OpenCV中的HoughLines函数来检测图像中的直线。具体步骤如下:
1. 读取图像并将其转换为灰度图像。
2. 对图像进行边缘检测,例如使用Canny算子。
3. 使用HoughLines函数检测直线。
4. 绘制检测到的直线。
下面是一个示例代码:
```python
import cv2
# 读取图像并转换为灰度图像
img = cv2.imread('image.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 边缘检测
edges = cv2.Canny(gray, 50, 150, apertureSize=3)
# 检测直线
lines = cv2.HoughLines(edges, 1, cv2.cv2.PI/180, 200)
# 绘制直线
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(img, (x1, y1), (x2, y2), (0, 0, 255), 2)
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
阅读全文