我想要一个检测三角形的opencv程序
时间: 2023-12-10 22:04:01 浏览: 62
以下是一个使用OpenCV检测三角形的Python程序:
```python
import cv2
import numpy as np
# 读取图像
img = cv2.imread('triangle.png')
# 将图像转换为灰度图像
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 进行边缘检测
edges = cv2.Canny(gray, 50, 150, apertureSize=3)
# 进行霍夫直线变换
lines = cv2.HoughLines(edges, 1, np.pi/180, 100)
# 进行霍夫直线变换
lines = cv2.HoughLines(edges, 1, np.pi/180, 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(img, (x1, y1), (x2, y2), (0, 0, 255), 2)
# 显示结果图像
cv2.imshow('Triangle Detection', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这个程序会读取名为“triangle.png”的图像文件,并使用Canny边缘检测和霍夫直线变换来检测图像中的三角形。如果检测到直线,则在原始图像中绘制这些直线,最终显示结果图像。
阅读全文