霍夫变换边缘连接python代码
时间: 2023-11-08 14:58:44 浏览: 77
霍夫变换代码
这是一个霍夫变换边缘连接的Python代码示例:
```python
import cv2
import numpy as np
# 读取图像并转换为灰度图像
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, np.pi/180, 200)
# 霍夫变换的结果是一组极坐标形式的线段,需要进行转换
if lines is not None:
for rho, theta in lines[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()
```
此代码将输入一张图像,进行边缘检测并进行霍夫变换,最终显示连接后的直线。
阅读全文