写出基于python霍夫变换检测高压输电线直线的代码
时间: 2023-11-13 13:47:52 浏览: 98
python+opencv实现霍夫变换检测直线
5星 · 资源好评率100%
以下是基于Python的霍夫变换检测高压输电线直线的代码:
```python
import cv2
import numpy as np
# 加载图像
img = cv2.imread('electric.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 高斯滤波
blur = cv2.GaussianBlur(gray, (5,5), 0)
# 边缘检测
edges = cv2.Canny(blur, 50, 150, apertureSize=3)
# 霍夫变换检测直线
lines = cv2.HoughLines(edges, 1, np.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('img', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在运行代码之前,需要先安装OpenCV库。
阅读全文