发布时间:2019-08-08 07:46:36编辑:auto阅读(2221)
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 公有属性和私有属性
48876
47944
38725
35866
30292
27048
26077
20911
20718
19077
523°
615°
619°
623°
599°
582°
652°
721°
844°
955°