forked from JimmyHHua/opencv_tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopencv_119.py
60 lines (43 loc) · 1.84 KB
/
opencv_119.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import cv2 as cv
import numpy as np
src = cv.imread("../code_118/m1.jpg")
src = cv.resize(src, (0,0), fx=0.5, fy=0.5)
r = cv.selectROI('input', src, False) # 返回 (x_min, y_min, w, h)
# roi区域
roi = src[int(r[1]):int(r[1]+r[3]), int(r[0]):int(r[0]+r[2])]
img = src.copy()
cv.rectangle(img, (int(r[0]), int(r[1])),(int(r[0])+int(r[2]), int(r[1])+ int(r[3])), (255, 0, 0), 2)
# 原图mask
mask = np.zeros(src.shape[:2], dtype=np.uint8)
# 矩形roi
rect = (int(r[0]), int(r[1]), int(r[2]), int(r[3])) # 包括前景的矩形,格式为(x,y,w,h)
bgdmodel = np.zeros((1,65),np.float64) # bg模型的临时数组 13 * iterCount
fgdmodel = np.zeros((1,65),np.float64) # fg模型的临时数组 13 * iterCount
cv.grabCut(src,mask,rect,bgdmodel,fgdmodel, 11, mode=cv.GC_INIT_WITH_RECT)
# 提取前景和可能的前景区域
mask2 = np.where((mask==1) + (mask==3), 255, 0).astype('uint8')
background = cv.imread("flower.png")
h, w, ch = src.shape
background = cv.resize(background, (w, h))
cv.imwrite("background.jpg", background)
mask = np.zeros(src.shape[:2], dtype=np.uint8)
bgdmodel = np.zeros((1,65),np.float64)
fgdmodel = np.zeros((1,65),np.float64)
cv.grabCut(src,mask,rect,bgdmodel,fgdmodel,5,mode=cv.GC_INIT_WITH_RECT)
mask2 = np.where((mask==1) + (mask==3), 255, 0).astype('uint8')
# 高斯模糊
se = cv.getStructuringElement(cv.MORPH_RECT, (3, 3))
cv.dilate(mask2, se, mask2)
mask2 = cv.GaussianBlur(mask2, (5, 5), 0)
cv.imshow('background-mask',mask2)
cv.imwrite('background-mask.jpg',mask2)
# 虚化背景
background = cv.GaussianBlur(background, (0, 0), 15)
mask2 = mask2/255.0
a = mask2[..., None]
# 融合方法 com = a*fg + (1-a)*bg
result = a* (src.astype(np.float32)) +(1 - a) * (background.astype(np.float32))
cv.imshow("result", result.astype(np.uint8))
cv.imwrite("result.jpg", result.astype(np.uint8))
cv.waitKey(0)
cv.destroyAllWindows()