使用python实现识别图片juzi.jpg中橘子的轮廓
时间: 2023-09-17 12:10:01 浏览: 75
要识别图片juzi.jpg中橘子的轮廓,可以使用Python中的OpenCV库。以下是实现的步骤:
1. 导入OpenCV库和numpy库。
```
import cv2
import numpy as np
```
2. 读取图片并转换成灰度图像。
```
img = cv2.imread('juzi.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
```
3. 对灰度图像进行高斯滤波。
```
blur = cv2.GaussianBlur(gray, (5, 5), 0)
```
4. 对滤波后的图像进行二值化处理。
```
ret, thresh = cv2.threshold(blur, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU)
```
5. 对二值化后的图像进行边缘检测。
```
edges = cv2.Canny(thresh, 30, 150)
```
6. 对边缘检测后的图像进行膨胀操作。
```
kernel = np.ones((3,3), np.uint8)
edges = cv2.dilate(edges, kernel, iterations=1)
```
7. 寻找图像中的轮廓并绘制出来。
```
contours, hierarchy = cv2.findContours(edges, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0, 0, 255), 2)
```
完整代码如下:
```
import cv2
import numpy as np
img = cv2.imread('juzi.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
blur = cv2.GaussianBlur(gray, (5, 5), 0)
ret, thresh = cv2.threshold(blur, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU)
edges = cv2.Canny(thresh, 30, 150)
kernel = np.ones((3,3), np.uint8)
edges = cv2.dilate(edges, kernel, iterations=1)
contours, hierarchy = cv2.findContours(edges, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0, 0, 255), 2)
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
运行代码后,会弹出显示图片的窗口,其中橘子的轮廓会用红色线段标出来。
阅读全文