python 边缘检测,并测量面积
时间: 2023-06-19 18:10:18 浏览: 144
使用Python进行边缘检测
可以使用OpenCV库来进行边缘检测和面积测量。
以下是一个示例代码:
```python
import cv2
# 读取图像
img = cv2.imread('image.jpg')
# 灰度化
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 边缘检测
edges = cv2.Canny(gray, 100, 200)
# 寻找轮廓
contours, hierarchy = cv2.findContours(edges, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# 画出轮廓
cv2.drawContours(img, contours, -1, (0, 255, 0), 2)
# 测量面积
area = cv2.contourArea(contours[0])
print('面积:', area)
# 显示图像
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这个示例代码读取一张图像,将其灰度化,进行边缘检测,然后寻找轮廓并画出来。最后通过`cv2.contourArea()`函数来测量轮廓的面积。
阅读全文