使用OpenCV-Python库边缘检测实现手、口和眼轮廓提取的代码示例
时间: 2023-12-29 08:03:35 浏览: 82
好的,以下是使用OpenCV-Python库实现手、口和眼轮廓提取的代码示例:
```python
import cv2
# 读取图片
img = cv2.imread('example.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 边缘检测
edges = cv2.Canny(gray, 50, 150)
# 手、口和眼轮廓提取
contours, hierarchy = cv2.findContours(edges, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
hand_contours = []
mouth_contours = []
eye_contours = []
for cnt in contours:
area = cv2.contourArea(cnt)
if area < 100:
continue
x, y, w, h = cv2.boundingRect(cnt)
aspect_ratio = float(w) / h
if aspect_ratio > 1.5:
hand_contours.append(cnt)
elif aspect_ratio < 0.5:
mouth_contours.append(cnt)
else:
eye_contours.append(cnt)
# 绘制轮廓
cv2.drawContours(img, hand_contours, -1, (0, 255, 0), 2)
cv2.drawContours(img, mouth_contours, -1, (0, 0, 255), 2)
cv2.drawContours(img, eye_contours, -1, (255, 0, 0), 2)
# 显示结果
cv2.imshow('img', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这段代码可以读取名为 `example.jpg` 的图片,并使用 Canny 边缘检测算法进行边缘检测。接着,使用 `findContours()` 函数提取轮廓,并根据轮廓的长宽比来区分手、口和眼。最后,使用 `drawContours()` 函数将绘制好的轮廓绘制到原图上,并显示结果。
阅读全文