发布时间:2019-08-08 07:46:36编辑:auto阅读(2049)
import numpy as np
import cv2
from matplotlib import pyplot as plt
img = cv2.imread('b.jpg')
mask = np.zeros(img.shape[:2], np.uint8)
bgdModel = np.zeros((1, 65), np.float64)
fgdModel = np.zeros((1, 65), np.float64)
rect = (20, 20, 413, 591)
cv2.grabCut(img, mask, rect, bgdModel, fgdModel, 10, cv2.GC_INIT_WITH_RECT)
mask2 = np.where((mask == 2) | (mask == 0), 0, 1).astype('uint8')
img = img * mask2[:, :, np.newaxis]
img += 255 * (1 - cv2.cvtColor(mask2, cv2.COLOR_GRAY2BGR))
# plt.imshow(img)
# plt.show()
img = np.array(img)
mean = np.mean(img)
img = img - mean
img = img * 0.9 + mean * 0.9
img /= 255
plt.imshow(img)
plt.show()
上一篇: 【备忘】最新Python3网络爬虫实战案
下一篇: python 公有属性和私有属性
48201
46948
37852
35154
29679
26338
25274
20295
19966
18424
41°
6058°
6768°
6254°
6230°
7351°
6176°
6304°
6779°
6788°