-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip6.py
35 lines (26 loc) · 956 Bytes
/
ip6.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
import cv2
import numpy as np
# Load two images
img1 = cv2.imread('D:/3D-Matplotlib.png')
img2 = cv2.imread('D:/mainlogo.png')
# I want to put logo on top-left corner, So I create a ROI
rows,cols,channels = img2.shape
roi = img1[0:rows, 0:cols ]
# Now create a mask of logo and create its inverse mask
img2gray = cv2.cvtColor(img2,cv2.COLOR_BGR2GRAY)
# add a threshold
ret, mask = cv2.threshold(img2gray, 220, 255, cv2.THRESH_BINARY_INV)
mask_inv = cv2.bitwise_not(mask)
# Now black-out the area of logo in ROI
img1_bg = cv2.bitwise_and(roi,roi,mask = mask_inv)
# Take only region of logo from logo image.
img2_fg = cv2.bitwise_and(img2,img2,mask = mask)
dst = cv2.add(img1_bg,img2_fg)
img1[0:rows, 0:cols ] = dst
#cv2.imshow('img2gray',img2gray)
#cv2.imshow('add',img1_bg)
#cv2.namedWindow('add',cv2.WINDOW_NORMAL)
#cv2.resizeWindow('add',600,600)
#cv2.imshow('res',img1)
cv2.waitKey(0)
cv2.destroyAllWindows()