发布时间:2019-08-08 07:46:36编辑:auto阅读(2743)
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 公有属性和私有属性
52715
52634
42785
39652
34027
30990
29786
24677
24518
22898
265°
267°
328°
315°
359°
513°
488°
509°
578°
506°