写一段去除图片背景的python代码
时间: 2023-04-09 07:02:05 浏览: 127
此工具根据手动添加的标记(基于 OpenCV) 去除图像的背景_python_代码_下载
以下是一段使用OpenCV库的Python代码,可以去除图片背景:
```python
import cv2
# 读取图片
img = cv2.imread('image.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 使用阈值分割将背景变为白色
_, 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=2)
# 找到轮廓并填充
contours, hierarchy = cv2.findContours(opening, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
for cnt in contours:
cv2.drawContours(opening, [cnt], 0, 255, -1)
# 将去除背景后的图像保存
result = cv2.bitwise_and(img, img, mask=opening)
cv2.imwrite('result.jpg', result)
```
注意:这段代码仅适用于简单的背景去除,对于复杂的背景可能效果不佳。
阅读全文