使用python-opencv识别图片中的数字的示例
时间: 2023-04-03 13:04:18 浏览: 137
可以使用以下代码来识别图片中的数字:
```python
import cv2
import pytesseract
# 读取图片
img = cv2.imread('image.jpg')
# 灰度化
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 二值化
ret, thresh = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU)
# 去除噪声
kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (3, 3))
opening = cv2.morphologyEx(thresh, cv2.MORPH_OPEN, kernel, iterations=1)
# 查找轮廓
contours, hierarchy = cv2.findContours(opening, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# 遍历轮廓
for contour in contours:
# 计算轮廓面积
area = cv2.contourArea(contour)
if area < 100:
continue
# 找到数字区域
x, y, w, h = cv2.boundingRect(contour)
digit = gray[y:y+h, x:x+w]
# 识别数字
text = pytesseract.image_to_string(digit, config='--psm 10 --oem 3 -c tessedit_char_whitelist=0123456789')
print(text)
```
这段代码使用了 OpenCV 和 pytesseract 库,首先将图片灰度化和二值化,然后去除噪声,接着查找轮廓,找到数字区域后使用 pytesseract 进行识别。
阅读全文