-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimageblending.py
59 lines (52 loc) · 1.73 KB
/
imageblending.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
import cv2 as cv
import numpy as np
apple=cv.imread("apple.jpg")
orange=cv.imread("orange.jpg")
print(apple.shape)
print(orange.shape)
apple_orange=np.hstack((apple[:,:256],orange[:,256:]))
#generate gaussian pyramid for apple
apple_copy=apple.copy()
gp_apple=[apple_copy]
for i in range(6):
apple_copy=cv.pyrDown(apple_copy)
gp_apple.append(apple_copy)
#generate gaussian pyramid for orange
orange_copy=orange.copy()
gp_orange=[orange_copy]
for i in range(6):
orange_copy=cv.pyrDown(orange_copy)
gp_orange.append(orange_copy)
#generate laplacian pyramid for apple
apple_copy=gp_apple[5]
lp_apple=[apple_copy]
for i in range(5,0,-1):
gaussian_extended=cv.pyrUp(gp_apple[i])
laplacian=cv.subtract(gp_apple[i-1],gaussian_extended)
lp_apple.append(laplacian)
#generate laplacian pyramid for orange
orange_copy=gp_orange[5]
lp_orange=[orange_copy]
for i in range(5,0,-1):
gaussian_extended=cv.pyrUp(gp_orange[i])
laplacian=cv.subtract(gp_orange[i-1],gaussian_extended)
lp_orange.append(laplacian)
#now add left and right halves of images in each level
apple_orange_pyramid=[]
n=0
for apple_lap,orange_lap in zip(lp_apple,lp_orange):
n+=1
cols,rows,ch=apple_lap.shape
laplacian=np.hstack((apple_lap[:,0:int(cols/2)],orange_lap[:,int(cols/2):]))
apple_orange_pyramid.append(laplacian)
#now reconstruct
apple_orange_reconstruct=apple_orange_pyramid[0]
for i in range(1,6):
apple_orange_reconstruct=cv.pyrUp(apple_orange_reconstruct)
apple_orange_reconstruct=cv.add(apple_orange_pyramid[i],apple_orange_reconstruct)
cv.imshow("apple",apple)
cv.imshow("orange",orange)
cv.imshow("apple_orange",apple_orange)
cv.imshow("apple_orange_reconstruct",apple_orange_reconstruct)
cv.waitKey(0)
cv.destroyAllWindows()